guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

77/223: gnu: python-attrs: Update to 23.2.0.


From: guix-commits
Subject: 77/223: gnu: python-attrs: Update to 23.2.0.
Date: Thu, 17 Oct 2024 06:20:46 -0400 (EDT)

sharlatan pushed a commit to branch python-team
in repository guix.

commit 19a92d5cce7a03a01f5ab05b022a1698cf98ae59
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue May 7 07:55:44 2024 +0200

    gnu: python-attrs: Update to 23.2.0.
    
    * gnu/packages/python-xyz.scm (python-attrs): Update to 23.2.0.
    [build-system]: Use pyproject-build-system.
    [arguments]: Remove custom 'check phase.
    [native-inputs]: Remove python-coverage, python-hypothesis, and python-six;
    add python-hatchling, python-hatch-fancy-pypi-readme, python-hatch-vcs,
    python-pytest-xdist, and python-zope-interface.
    (python-attrs-bootstrap)[native-inputs]: Add python-hatchling,
    python-hatch-fancy-pypi-readme, python-hatch-vcs.
    
    Change-Id: I19f99b38589db7de0f6a78d6e0f126118dbe2b1d
---
 gnu/packages/python-xyz.scm | 39 ++++++++++++++++++++++-----------------
 1 file changed, 22 insertions(+), 17 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index e34d89df7c..ccf6a181ef 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -24388,29 +24388,32 @@ both as keys and as attributes.")
 (define-public python-attrs
   (package
     (name "python-attrs")
-    (version "21.2.0")
+    (version "23.2.0")
     (source (origin
               (method url-fetch)
               (uri (pypi-uri "attrs" version))
               (sha256
                (base32
-                "1yzmwi5d197p0qhl7rl4xi9q1w8mk9i3zn6hrl22knbcrb1slspg"))))
-    (build-system python-build-system)
+                "0c0zjwcqzbmpl93izm2g37gc3lsbbb9pf275fv7zcqn256sw6pck"))))
+    (build-system pyproject-build-system)
     (arguments
-     `(#:phases (modify-phases %standard-phases
-                  (add-after 'unpack 'remove-test-hypothesis-deadlines
-                    (lambda _
-                      (substitute* "tests/test_make.py"
-                        (("assume, given") "assume, given, settings")
-                        (("( +)@given" all spaces)
-                         (string-append spaces "@settings(deadline=None)\n" 
all)))))
-                  (replace 'check
-                    (lambda* (#:key tests? #:allow-other-keys)
-                      (when tests?
-                        (invoke "pytest")))))))
+     (list
+      #:phases
+      '(modify-phases %standard-phases
+         (add-after 'unpack 'remove-test-hypothesis-deadlines
+           (lambda _
+             (substitute* "tests/test_make.py"
+               (("assume, given") "assume, given, settings")
+               (("( +)@given" all spaces)
+                (string-append spaces "@settings(deadline=None)\n" all))))))))
     (native-inputs
-     (list python-coverage python-hypothesis python-pympler python-pytest
-           python-six))
+     (list python-hatchling
+           python-hatch-fancy-pypi-readme
+           python-hatch-vcs
+           python-pympler
+           python-pytest
+           python-pytest-xdist
+           python-zope-interface))
     (home-page "https://github.com/python-attrs/attrs/";)
     (synopsis "Attributes without boilerplate")
     (description "@code{attrs} is a Python package with class decorators that
@@ -24422,7 +24425,9 @@ both as keys and as attributes.")
   (package
     (inherit python-attrs)
     (name "python-attrs-bootstrap")
-    (native-inputs `())
+    (native-inputs (list python-hatchling
+                         python-hatch-fancy-pypi-readme
+                         python-hatch-vcs))
     (arguments `(#:tests? #f))))
 
 (define-public python-cliapp



reply via email to

[Prev in Thread] Current Thread [Next in Thread]