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
This commit is contained in:
Sharlatan Hellseher 2025-07-31 15:07:12 +01:00
parent 7e15a173e4
commit 5427c025a2
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -30915,23 +30915,18 @@ make your work easier.")
(define-public python-outcome (define-public python-outcome
(package (package
(name "python-outcome") (name "python-outcome")
(version "1.2.0") (version "1.3.0.post0")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "outcome" version)) (uri (pypi-uri "outcome" version))
(sha256 (sha256
(base32 "0wi6bmsfn73aw1hbpa1nhhshlx9k2vxcl7kp3z7h78sxwhyvv0kg")))) (base32 "1f2327wzf57zwqw15kzk19ff2s52fa74cxxk8w0bhw99bzk05kwx"))))
(build-system python-build-system) (build-system pyproject-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"))))))
(native-inputs (native-inputs
(list python-pytest python-pytest-cov python-pytest-asyncio)) (list python-pytest
python-pytest-asyncio
python-setuptools))
(propagated-inputs (propagated-inputs
(list python-attrs)) (list python-attrs))
(home-page "https://github.com/python-trio/outcome") (home-page "https://github.com/python-trio/outcome")