summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-02-09 21:27:52 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-02-09 21:27:56 +0000
commite27e63e6fe72d3a6cb6a8755f290ec710d339a9a (patch)
tree79c02954c969ddbfe5354dcd59cdc31b8160d87d /gnu/packages/python-xyz.scm
parent45943e0979457c63c8678b41f5ae5f80c770d55a (diff)
gnu: python-npx: Update to 0.1.6.
* gnu/packages/python-xyz.scm (python-npx): Update to 0.1.6. [source]: Swap to git checkout as PyPI does not provide source archive. [build-system]: Swap to pyproject-build-system. [native-inputs]: Remove python-flit-core; add python-setuptools and python-wheel. Change-Id: I60c57f77a91dc2a7936f22c8abd6000fbff67e2e
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm26
1 files changed, 17 insertions, 9 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index a1b47ca5f7f..e4f4fa68879 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -9520,16 +9520,24 @@ the Texinfo, HTML, and PDF formats.")))
9520(define-public python-npx 9520(define-public python-npx
9521 (package 9521 (package
9522 (name "python-npx") 9522 (name "python-npx")
9523 (version "0.1.1") 9523 (version "0.1.6")
9524 (source (origin 9524 (source
9525 (method url-fetch) 9525 (origin
9526 (uri (pypi-uri "npx" version)) 9526 (method git-fetch) ; no source archive in PyPI
9527 (sha256 9527 (uri (git-reference
9528 (base32 9528 (url "https://github.com/sigma-py/npx")
9529 "1m0v2p5mh3aqrypl4ipgzvr5nhx7bk5vv9ah2xr9l1xgj6nnmqnc")))) 9529 (commit (string-append "v" version))))
9530 (file-name (git-file-name name version))
9531 (sha256
9532 (base32 "0a3rb3ydl13m1r48kdvnbi31566jxm10p36argkz5kjr2ilkrx8v"))))
9530 (build-system pyproject-build-system) 9533 (build-system pyproject-build-system)
9531 (propagated-inputs (list python-numpy)) 9534 (native-inputs
9532 (native-inputs (list python-flit-core python-networkx python-pytest)) 9535 (list python-networkx
9536 python-pytest
9537 python-setuptools
9538 python-wheel))
9539 (propagated-inputs
9540 (list python-numpy))
9533 (home-page "https://github.com/nschloe/npx") 9541 (home-page "https://github.com/nschloe/npx")
9534 (synopsis "Extensions for NumPy") 9542 (synopsis "Extensions for NumPy")
9535 (description "NumPy is a large library used everywhere in scientific 9543 (description "NumPy is a large library used everywhere in scientific