~ruther/guix-local

1d0d80bd43a5369bcdbae3c8fdcb9374acf8f1ea — Nicolas Graves 4 months ago 7054b29
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>
1 files changed, 5 insertions(+), 5 deletions(-)

M gnu/packages/python-xyz.scm
M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +5 -5
@@ 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