gnu: Add python-toolz.

* gnu/packages/python.scm (python-toolz): New variable.
This commit is contained in:
Ricardo Wurmus 2018-09-05 15:54:52 +02:00 committed by Ricardo Wurmus
parent 943a4cb601
commit 7cd51cd28e
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -14067,3 +14067,25 @@ (define-public python-multiprocess
which supports the spawning of processes using the API of the standard
library's @code{threading} module.")
(license license:bsd-3)))
(define-public python-toolz
(package
(name "python-toolz")
(version "0.9.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "toolz" version))
(sha256
(base32
"1j9i7fdjnx9dz35fdj5gvgxx6585ja9sxgaiv65if77nlxz0m7wj"))))
(build-system python-build-system)
;; FIXME: tests cannot be computed: "Can't perform this operation for
;; unregistered loader type"
(arguments '(#:tests? #f))
(home-page "https://github.com/pytoolz/toolz/")
(synopsis "List processing tools and functional utilities")
(description
"This package provides a set of utility functions for iterators,
functions, and dictionaries.")
(license license:bsd-3)))