summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-12 14:38:14 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:35:41 +0100
commit1ed8a3d4465c8307b78bcdd1bb02e030ae2157a9 (patch)
treea1cc7d7c081c45d9e6ed0059a99ec76e67cf93df /gnu/packages/python-xyz.scm
parent78aac7cf1a5d0a8a023f17558ffc14f2c5ef5cb8 (diff)
gnu: python-attrs: Update to 25.3.0.
* gnu/packages/python-xyz.scm (python-attrs): Update to 25.3.0. [arguments] <phases>: Remove 'remove-test-hypothesis-deadlines. [native-inputs]: Remove python-pympler, python-pytest-xdist, and python-zope-interface; add python-hypothesis. Change-Id: I182dac73577d0617c32111f00a0a3245db77de73
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm34
1 files changed, 11 insertions, 23 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index d022d3b294..ea4a506846 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -26061,32 +26061,20 @@ instead of servers and network commands.")
(define-public python-attrs
(package
(name "python-attrs")
- (version "24.2.0")
- (source (origin
- (method url-fetch)
- (uri (pypi-uri "attrs" version))
- (sha256
- (base32
- "0ik35wvcmapzhyzvwhlsrk53pgxnswh3zh5fkdb8dc5m928ipysw"))))
+ (version "25.3.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "attrs" version))
+ (sha256
+ (base32 "06xgyhxzsc0h3l0pqlkk168f072a9lnl9d415ixp8xmmgzycxmvm"))))
(build-system pyproject-build-system)
- (arguments
- (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-hatchling
- python-hatch-fancy-pypi-readme
+ (list python-hatch-fancy-pypi-readme
python-hatch-vcs
- python-pympler
- python-pytest
- python-pytest-xdist
- python-zope-interface))
+ python-hatchling
+ python-hypothesis
+ python-pytest))
(home-page "https://github.com/python-attrs/attrs/")
(synopsis "Attributes without boilerplate")
(description "@code{attrs} is a Python package with class decorators that