summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-31 15:07:12 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-07-31 17:06:57 +0100
commit6838c037be3f11cba4482bd018d233054f336a30 (patch)
tree10131a9e70d0c9d548b9b9002161d67225039768
parent9ac954ff73d7d9a4600b60938d1d392580b13048 (diff)
gnu: python-outcome: Update to 1.3.0.post0.
* gnu/packages/python-xyz.scm (python-outcome): Update to 1.3.0.post0. [native-inputs]: Remove python-pytest-cov; add python-setuptools. Change-Id: I04d1a829ffdee4ada25e70e09308d73b1af073cc
-rw-r--r--gnu/packages/python-xyz.scm17
1 files changed, 6 insertions, 11 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 7ac2d40631..051fd352e9 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -30795,23 +30795,18 @@ make your work easier.")
(define-public python-outcome
(package
(name "python-outcome")
- (version "1.2.0")
+ (version "1.3.0.post0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "outcome" version))
(sha256
- (base32 "0wi6bmsfn73aw1hbpa1nhhshlx9k2vxcl7kp3z7h78sxwhyvv0kg"))))
- (build-system python-build-system)
- (arguments
- `(#:phases
- (modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key inputs outputs #:allow-other-keys)
- (add-installed-pythonpath inputs outputs)
- (invoke "pytest" "-vv"))))))
+ (base32 "1f2327wzf57zwqw15kzk19ff2s52fa74cxxk8w0bhw99bzk05kwx"))))
+ (build-system pyproject-build-system)
(native-inputs
- (list python-pytest python-pytest-cov python-pytest-asyncio))
+ (list python-pytest
+ python-pytest-asyncio
+ python-setuptools))
(propagated-inputs
(list python-attrs))
(home-page "https://github.com/python-trio/outcome")