This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch python-team
in repository guix.
The following commit(s) were added to refs/heads/python-team by this push:
new ea8a6e7bb2 gnu: python-assertpy: Fix tests.
ea8a6e7bb2 is described below
commit ea8a6e7bb21cc4e6e894cd6fac82540efad5e6e1
Author: Hugo Buddelmeijer <[email protected]>
AuthorDate: Mon Sep 22 10:36:14 2025 +0200
gnu: python-assertpy: Fix tests.
* gnu/packages/python-check.scm (python-assertpy): Fix tests.
[source]: Switch to git-fetch.
[native-inputs]: Remove python-wheel, add python-pytest.
Change-Id: I878498f64bb6b1399c033ee6d33bbf7a1afd47ed
Signed-off-by: Andreas Enge <[email protected]>
---
gnu/packages/python-check.scm | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index e9f1660619..d4cc2c7975 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -185,12 +185,15 @@ most situations.")
(version "1.1")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "assertpy" version))
+ (method git-fetch) ;no tests in PyPI distribution
+ (uri (git-reference
+ (url "https://github.com/assertpy/assertpy")
+ (commit version)))
+ (file-name (git-file-name name version))
(sha256
- (base32 "0cs8xya465wvb9dw0kdl7cvkxwrslhbma66y44r1mmsajcll7imc"))))
+ (base32 "0hnfh45cmqyp7zasrllwf8gbq3mazqlhhk0sq1iqlh6fig0yfq2f"))))
(build-system pyproject-build-system)
- (native-inputs (list python-setuptools python-wheel))
+ (native-inputs (list python-pytest python-setuptools))
(home-page "https://github.com/assertpy/assertpy")
(synopsis "Simple assertion library for unit testing")
(description