guix_mirror_bot pushed a commit to branch master
in repository guix.

commit dab784f0bad307bc021c881888e334c61c26e01a
Author: Nicolas Graves <[email protected]>
AuthorDate: Fri Nov 21 22:37:11 2025 +0100

    gnu: python-ordered-set: Switch to pyproject.
    
    * gnu/packages/python-xyz.scm (python-ordered-set):
    [build-system]: Switch to pyproject-build-system.
    [native-inputs]: Add python-flit-core.
    
    Change-Id: Ic5259435195b147858cc0b22560199721e10a6d1
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/python-xyz.scm | 11 ++---------
 1 file changed, 2 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 19c121122c..b197e7c9dc 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -33820,15 +33820,8 @@ interfaces.")
        (uri (pypi-uri "ordered-set" version))
        (sha256
         (base32 "1a34fg3r3480nfm6652kyqql3lwixf8jirzdja9camvnr128wjk9"))))
-    (build-system python-build-system)
-    (arguments
-     (list #:phases
-           #~(modify-phases %standard-phases
-               (replace 'check
-                 (lambda* (#:key tests? #:allow-other-keys)
-                   (when tests?
-                     (invoke "pytest" "-vv")))))))
-    (native-inputs (list python-cython python-pytest))
+    (build-system pyproject-build-system)
+    (native-inputs (list python-cython python-flit-core python-pytest))
     (home-page "https://github.com/simonpercivall/orderedset";)
     (synopsis "Ordered Set implementation in Cython")
     (description "This library provides an @code{OrderedSet} data type that

Reply via email to