mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-cytoolz: Update to 1.0.1.
* gnu/packages/python-xyz.scm (python-cytoolz): Update to 1.0.1. [build-system]: Use pyproject. [arguments] <tests?>: Enable them. <test-flags>: Add option to run tests against installed module. [native-inputs]: Add python-pytest, python-setuptools, and python-wheel. Change-Id: Ifb9817cee571fb99666fc01f0c0196706fae7179
This commit is contained in:
parent
7ef8d80092
commit
428431572e
1 changed files with 10 additions and 9 deletions
|
@ -30477,25 +30477,26 @@ functions, and dictionaries.")
|
|||
(define-public python-cytoolz
|
||||
(package
|
||||
(name "python-cytoolz")
|
||||
(version "0.11.2")
|
||||
(version "1.0.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "cytoolz" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1d12mgaippxxhn24w2hj0my3aqkx80fks5g4wzfdsvl0acqnc8za"))
|
||||
(base32 "1mn7n916w8dfij3zq139a4szv12rwp94xxrnfvnv66wyp1hk3k49"))
|
||||
(modules '((guix build utils)))
|
||||
(snippet
|
||||
'(for-each delete-file (find-files "cytoolz" "\\.c$")))))
|
||||
(build-system python-build-system)
|
||||
;; FIXME: tests fail with "module 'cytoolz.curried' has no attribute
|
||||
;; 'exceptions'"
|
||||
(arguments '(#:tests? #f))
|
||||
(build-system pyproject-build-system)
|
||||
(arguments
|
||||
(list #:test-flags #~(list "--pyargs" "cytoolz")))
|
||||
(native-inputs
|
||||
(list python-cython
|
||||
python-pytest
|
||||
python-setuptools
|
||||
python-wheel))
|
||||
(propagated-inputs
|
||||
(list python-toolz))
|
||||
(native-inputs
|
||||
(list python-cython))
|
||||
(home-page "https://github.com/pytoolz/cytoolz")
|
||||
(synopsis "High performance functional utilities")
|
||||
(description
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue