summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-12-10 00:04:40 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-12-28 12:06:19 +0000
commite64729df20fb52a1cb3f23bf05d1c8c2b2a9d378 (patch)
tree1ae1ab0809ebacd1f965b33be69dd93c6c62a0b4
parentd463b29e4d4116456d45c424e6670d1faa38b686 (diff)
gnu: python-keyutils: Switch to pyproject.
* gnu/packages/python-crypto.scm (python-keyutils): [build-system]: Switch to pyproject-build-system. [arguments]: Relocate field. [native-inputs]: Add python-setuptools. Remove python-pytest-runner. Change-Id: I29b7829436918f7d959b9804b429c7cf2955bef1 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r--gnu/packages/python-crypto.scm22
1 files changed, 11 insertions, 11 deletions
diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm
index 412382638ad..14ce0923615 100644
--- a/gnu/packages/python-crypto.scm
+++ b/gnu/packages/python-crypto.scm
@@ -1454,20 +1454,20 @@ Password-Authenticated Key Exchange algorithm.")
(method url-fetch)
(uri (pypi-uri "keyutils" version))
(sha256
- (base32
- "0lipygpzhwzzsq2k5imb1jgkmj8y4khxdwhzadjs3bd56g6bmkx9"))))
- (build-system python-build-system)
+ (base32 "0lipygpzhwzzsq2k5imb1jgkmj8y4khxdwhzadjs3bd56g6bmkx9"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list
+ #:tests? #f
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-before 'build 'regenerate-c-file
+ (lambda _
+ (invoke "cython" "keyutils/_keyutils.pyx"))))))
(native-inputs
- (list python-cython python-pytest python-pytest-runner))
+ (list python-cython python-pytest python-setuptools))
(inputs
(list keyutils))
- (arguments
- (list #:tests? #f
- #:phases
- #~(modify-phases %standard-phases
- (add-before 'build 'regenerate-c-file
- (lambda _
- (invoke "cython" "keyutils/_keyutils.pyx"))))))
(home-page "https://github.com/sassoftware/python-keyutils")
(synopsis "Python bindings for keyutils")
(description