summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-10-23 22:41:38 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-10-24 11:05:27 +0100
commit1d0d80bd43a5369bcdbae3c8fdcb9374acf8f1ea (patch)
tree4e5afcbd35818eb87d3f759e81c353fc300d38b8 /gnu
parent7054b29185202902381d03199fe3d02f7fd066b5 (diff)
gnu: python-pkgconfig: Switch to pyproject.
* gnu/packages/python-xyz.scm (python-pkgconfig): [build-system]: Switch to pyproject-build-system. [native-inputs]: Add python-setuptools. Change-Id: I9cc62942bd9f1cc999e872b0278ef2ced4c29775 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/python-xyz.scm10
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index d4cfbfd187..5765d5c4cf 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -21992,6 +21992,7 @@ check if a package meets certain version requirements, query CFLAGS and
LDFLAGS and parse the output to build extensions with setup.py.")
(license license:expat)))
+;; This package is unmaintained since 2014, but still used in `khmer'.
(define-public python-bz2file
(package
(name "python-bz2file")
@@ -22001,11 +22002,10 @@ LDFLAGS and parse the output to build extensions with setup.py.")
(method url-fetch)
(uri (pypi-uri "bz2file" version))
(sha256
- (base32
- "126s53fkpx04f33a829yqqk8fj4png3qwg4m66cvlmhmwc8zihb4"))))
- (build-system python-build-system)
- (arguments
- `(#:tests? #f)) ; Tests use deprecated python modules.
+ (base32 "126s53fkpx04f33a829yqqk8fj4png3qwg4m66cvlmhmwc8zihb4"))))
+ (build-system pyproject-build-system)
+ (arguments (list #:tests? #f)) ; Tests use deprecated python modules.
+ (native-inputs (list python-setuptools))
(home-page "https://github.com/nvawda/bz2file")
(synopsis "Read and write bzip2-compressed files")
(description