diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-12-10 00:04:40 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-12-28 12:06:19 +0000 |
| commit | e64729df20fb52a1cb3f23bf05d1c8c2b2a9d378 (patch) | |
| tree | 1ae1ab0809ebacd1f965b33be69dd93c6c62a0b4 /gnu/packages/python-crypto.scm | |
| parent | d463b29e4d4116456d45c424e6670d1faa38b686 (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>
Diffstat (limited to 'gnu/packages/python-crypto.scm')
| -rw-r--r-- | gnu/packages/python-crypto.scm | 22 |
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.") | |||
| 1454 | (method url-fetch) | 1454 | (method url-fetch) |
| 1455 | (uri (pypi-uri "keyutils" version)) | 1455 | (uri (pypi-uri "keyutils" version)) |
| 1456 | (sha256 | 1456 | (sha256 |
| 1457 | (base32 | 1457 | (base32 "0lipygpzhwzzsq2k5imb1jgkmj8y4khxdwhzadjs3bd56g6bmkx9")))) |
| 1458 | "0lipygpzhwzzsq2k5imb1jgkmj8y4khxdwhzadjs3bd56g6bmkx9")))) | 1458 | (build-system pyproject-build-system) |
| 1459 | (build-system python-build-system) | 1459 | (arguments |
| 1460 | (list | ||
| 1461 | #:tests? #f | ||
| 1462 | #:phases | ||
| 1463 | #~(modify-phases %standard-phases | ||
| 1464 | (add-before 'build 'regenerate-c-file | ||
| 1465 | (lambda _ | ||
| 1466 | (invoke "cython" "keyutils/_keyutils.pyx")))))) | ||
| 1460 | (native-inputs | 1467 | (native-inputs |
| 1461 | (list python-cython python-pytest python-pytest-runner)) | 1468 | (list python-cython python-pytest python-setuptools)) |
| 1462 | (inputs | 1469 | (inputs |
| 1463 | (list keyutils)) | 1470 | (list keyutils)) |
| 1464 | (arguments | ||
| 1465 | (list #:tests? #f | ||
| 1466 | #:phases | ||
| 1467 | #~(modify-phases %standard-phases | ||
| 1468 | (add-before 'build 'regenerate-c-file | ||
| 1469 | (lambda _ | ||
| 1470 | (invoke "cython" "keyutils/_keyutils.pyx")))))) | ||
| 1471 | (home-page "https://github.com/sassoftware/python-keyutils") | 1471 | (home-page "https://github.com/sassoftware/python-keyutils") |
| 1472 | (synopsis "Python bindings for keyutils") | 1472 | (synopsis "Python bindings for keyutils") |
| 1473 | (description | 1473 | (description |
