diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-07-31 19:06:56 +0200 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-07 18:33:34 +0100 |
| commit | 5571bd20095839c48b3ea9d42bc66c58529135f7 (patch) | |
| tree | 9272a86e844cb775684cea41d6f9c394da148031 | |
| parent | 8ada9e232a1579e369901cb8c96e502011ecf4fb (diff) | |
gnu: python-pyenchant: Switch to pyproject.
* gnu/packages/enchant.scm (python-pyenchant):
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-setuptools, python-wheel.
Change-Id: Id7bcc096c1ec82c49ae56c1d19d4f581ccb77efc
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
| -rw-r--r-- | gnu/packages/enchant.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/enchant.scm b/gnu/packages/enchant.scm index 71f45bc57d..6298bd4904 100644 --- a/gnu/packages/enchant.scm +++ b/gnu/packages/enchant.scm @@ -32,6 +32,7 @@ #:use-module (gnu packages man) #:use-module (gnu packages perl) #:use-module (gnu packages pkg-config) + #:use-module (gnu packages python-build) #:use-module (gnu packages version-control) #:use-module (guix gexp) #:use-module (guix packages) @@ -39,6 +40,7 @@ #:use-module (guix download) #:use-module (guix build-system cmake) #:use-module (guix build-system gnu) + #:use-module (guix build-system pyproject) #:use-module (guix build-system python) #:use-module (guix licenses) #:use-module (srfi srfi-1)) @@ -149,7 +151,7 @@ Ispell-compatible.") (sha256 (base32 "1872ckgdip8nj9rnh167m0gsj5754qfg2hjxzsl1s06f5akwscgw")))) - (build-system python-build-system) + (build-system pyproject-build-system) (arguments `(#:tests? #f; FIXME: Dictionary for language 'en_US' could not be found #:phases @@ -163,6 +165,8 @@ Ispell-compatible.") "/lib/libenchant-2.so\"")))))))) (inputs (list enchant)) + (native-inputs + (list python-setuptools python-wheel)) (home-page "https://github.com/pyenchant/pyenchant") (synopsis "Spellchecking library for Python") (description "PyEnchant is a spellchecking library for Python, based on the |
