diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-08-26 00:38:06 +0200 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-03 08:01:05 +0100 |
| commit | 64ac97f8c01b45add82ef9d24273e1117502464a (patch) | |
| tree | 4c9629aa887d7c4452a67d866973bec9bf9cbc53 /gnu/packages/python-crypto.scm | |
| parent | 2b2daab06865789d2e2b93c33ddab11b004c89ba (diff) | |
gnu: python-certipy: Switch to pyproject.
* gnu/packages/python-crypto.scm (python-certipy):
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-setuptools, python-wheel.
Change-Id: I120a86ca80bd2798154ae4a1717463b6ee736bde
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-crypto.scm')
| -rw-r--r-- | gnu/packages/python-crypto.scm | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm index 9640d70f7a0..27f3a781c0b 100644 --- a/gnu/packages/python-crypto.scm +++ b/gnu/packages/python-crypto.scm @@ -1525,17 +1525,14 @@ use in your tests.") (name "python-certipy") (version "0.1.3") (source - (origin - (method url-fetch) - (uri (pypi-uri "certipy" version)) - (sha256 - (base32 - "0n980gqpzh0fm58h3i4mi2i10wgj606lscm1r5sk60vbf6vh8mv9")))) - (build-system python-build-system) - (propagated-inputs - (list python-pyopenssl)) - (native-inputs - (list python-pytest)) + (origin + (method url-fetch) + (uri (pypi-uri "certipy" version)) + (sha256 + (base32 "0n980gqpzh0fm58h3i4mi2i10wgj606lscm1r5sk60vbf6vh8mv9")))) + (build-system pyproject-build-system) + (propagated-inputs (list python-pyopenssl)) + (native-inputs (list python-pytest python-setuptools python-wheel)) (home-page "https://github.com/LLNL/certipy") (synopsis "Utility to create and sign CAs and certificates") (description |
