diff options
author | Christopher Baines <mail@cbaines.net> | 2017-12-17 14:47:49 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2018-03-24 15:11:35 +0000 |
commit | 03765c5c4d64e527ad79004be40fd094f141b65b (patch) | |
tree | 89d2b81e2fcd52226284810d459befbf93288c49 | |
parent | 5b704c0c2eb9e58ffba31defa0617896fbaf5374 (diff) | |
download | guix-03765c5c4d64e527ad79004be40fd094f141b65b.tar guix-03765c5c4d64e527ad79004be40fd094f141b65b.tar.gz |
gnu: Add python-toolz.
* gnu/packages/python.scm (python-toolz): New variable.
-rw-r--r-- | gnu/packages/python.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index f694de6749..666d8fea9d 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -4439,6 +4439,33 @@ away.") (define-public python2-ipython-genutils (package-with-python2 python-ipython-genutils)) +(define-public python-toolz + (package + (name "python-toolz") + (version "0.8.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "toolz" version)) + (sha256 + (base32 + "0l3czks4xy37i8099waxk2fdz5g0k1dwys2mkhlxc0b0886cj4sa")))) + (build-system python-build-system) + (arguments + '(#:tests? #f)) + (home-page "https://github.com/pytoolz/toolz/") + (synopsis + "Toolz provides list processing tools and functional utilities") + (description + "Toolz provides a set of utility functions for iterators, functions, and +dictionaries. They extend the standard libraries itertools and functools and +borrow heavily from the standard libraries of contemporary functional +languages.") + (license license:bsd-3))) + +(define-public python2-toolz + (package-with-python2 python-toolz)) + (define-public python-traitlets (package (name "python-traitlets") |