diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-11-10 01:47:15 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-11-11 21:34:59 +0000 |
| commit | 164e2d5a42a67a0104dfb827010dffefd712dc24 (patch) | |
| tree | e51afb30176204bdbe6e208521c822b0b13cf0b8 /gnu/packages/python-xyz.scm | |
| parent | faf995643075b2dfb0b9d64bf5db9b0bd9e71f7c (diff) | |
gnu: python-flufl-testing: Switch to pyproject.
* gnu/packages/python-xyz.scm (python-flufl-testing):
[source]: Switch to git-fetch.
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-setuptools.
Change-Id: I7371e7a4a5201419aa63fd82ff9cdcfdc43b62c7
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 6200e0a029b..d5a7ac8b478 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -30960,14 +30960,17 @@ and have a maximum lifetime built-in.") (name "python-flufl-testing") (version "0.8") (source - (origin - (method url-fetch) - (uri (pypi-uri "flufl.testing" version)) - (sha256 - (base32 - "1nkm95mhcfhl4x5jgs6y97ikszaxsfh07nyawsih6cxxm6l62641")))) - (build-system python-build-system) - (arguments '(#:tests? #f)) ;no tests + (origin + (method git-fetch) + (uri (git-reference + (url "https://gitlab.com/warsaw/flufl.testing") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dl2dl4wdrqklkhqcdbwchpqrpm6lwic4qk961zi6b2f8agis35i")))) + (build-system pyproject-build-system) + (arguments (list #:tests? #f)) ;no tests + (native-inputs (list python-setuptools)) (home-page "https://gitlab.com/warsaw/flufl.testing") (synopsis "Collection of test tool plugins") (description |
