summaryrefslogtreecommitdiff
path: root/gnu/packages/python-check.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-09-12 23:15:34 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:36:06 +0100
commit24fff21a25dddc10d90db77c42b1693d4745b233 (patch)
tree63a80d1cd95f2c6fb3ca4a0b96fb61857dbcb455 /gnu/packages/python-check.scm
parentf1be2c7beee3b035141fc5b56acf329b7d81de06 (diff)
gnu: python-testfixtures: Update to 9.1.0.
* gnu/packages/python-check.scm (python-testfixtures): Update to 9.1.0. [bulid-system]: Switch to pyproject-build-system. [native-inputs]: Remove python-pytest, python-pytest-cov, python-twine, and python-wheel; add python-setuptools. Change-Id: Ida1dbbc639153399847d87aa81cae2b9a42eef1d
Diffstat (limited to 'gnu/packages/python-check.scm')
-rw-r--r--gnu/packages/python-check.scm17
1 files changed, 8 insertions, 9 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index 58fd28ef146..95a955deb86 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -3925,24 +3925,23 @@ control and kept as reference.
(define-public python-testfixtures
(package
(name "python-testfixtures")
- (version "6.17.1")
+ (version "9.1.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "testfixtures" version))
(sha256
- (base32 "1nlv2hz20czjp4a811ichl5kwg99rh84l0mw9wq4rk3idzfs1hsy"))))
- (build-system python-build-system)
+ (base32 "10hlw2y1rjzmfm87dlisbiwf0zyjbnj0q471799j69wlagrrqzji"))))
+ (build-system pyproject-build-system)
(arguments
`(#:tests? #f)) ; PyTest-Django fails to build in master
(native-inputs
- (list python-pytest python-pytest-cov
- ;;("python-pytest-django" ,python-pytest-django)
- python-twine python-wheel))
- (synopsis "Tests components for Python")
- (description "Testfixtures is a collection of helpers and mock objects that
-are useful when writing automated tests in Python.")
+ (list python-setuptools))
(home-page "https://testfixtures.readthedocs.io/en/latest/")
+ (synopsis "Tests components for Python")
+ (description
+ "Testfixtures is a collection of helpers and mock objects that are useful
+when writing automated tests in Python.")
(license license:expat)))
(define-public python-time-machine