diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2025-07-22 02:16:04 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-25 11:32:13 +0100 |
commit | 142d81b1aea9f5c3c8bcdb32ef541b0652876db2 (patch) | |
tree | e2682a6b3185ee05f6fc00e3d9535891e26f0d87 /gnu/packages/python-xyz.scm | |
parent | 4368cda72dc0490b41b10eb71a16b4a128616b8d (diff) |
gnu: python-sortedcollections: Switch to pyproject.
* gnu/packages/python-xyz.scm (python-sortedcollections): Reorder fields.
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-setuptools, python-wheel.
Change-Id: Iee1fd2584499b12e007b3620bec4eeb0fd97f3cf
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index aca0c1d32a..9a2a067f4d 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -30244,12 +30244,12 @@ that is accessible to other projects developed in Cython.") (method url-fetch) (uri (pypi-uri "sortedcollections" version)) (sha256 - (base32 - "1kfabpnjyjm5ml2zspry9jy3xq49aybchgaa4ahic2jqdjfn1sfq")))) - (build-system python-build-system) + (base32 "1kfabpnjyjm5ml2zspry9jy3xq49aybchgaa4ahic2jqdjfn1sfq")))) + (build-system pyproject-build-system) + (arguments '(#:tests? #f)) ; Tests not included in release tarball. + (native-inputs (list python-setuptools python-wheel)) (propagated-inputs (list python-sortedcontainers)) - (arguments '(#:tests? #f)) ; Tests not included in release tarball. (home-page "https://www.grantjenks.com/docs/sortedcollections/") (synopsis "Python Sorted Collections") (description "Sorted Collections is a Python sorted collections library.") |