guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 4433dd30a5795fd0c5f8d02263106eaf51940ebd
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Oct 24 12:21:44 2025 +0100
gnu: python-toolshed: Switch to pyproject.
* gnu/packages/python-xyz.scm (python-toolshed)[build-system]: Switch to
pyproject-build-system.
[arguments]: Disable missing tests, there are tests in Git but the
project depends on Nose test runner.
[native-inputs]: Remove python-nose; add python-setuptools.
Change-Id: I161a9f742de3508944b1b00e7a782a5291a7488e
---
gnu/packages/python-xyz.scm | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 6bd973b73d..8052e1c38e 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -30143,9 +30143,11 @@ and dates in \"human readable\" forms. For example,
it would display
(sha256
(base32
"14zvz51gzf9i1i3d1sj363ba4rksl6lcf4lz1arl8hpqgcbir8r3"))))
- (build-system python-build-system)
+ (build-system pyproject-build-system)
+ (arguments
+ (list #:tests? #f)) ;tests are not included in PyPI archive
(native-inputs
- (list python-nose))
+ (list python-setuptools))
(home-page "https://github.com/brentp/toolshed/")
(synopsis "Collection of modules and functions for working with data")
(description "This is a collection of well-tested, simple modules and