gnu: Add python-partd.

* gnu/packages/python.scm (python-partd): New variable.
This commit is contained in:
Ricardo Wurmus 2018-09-05 15:59:59 +02:00 committed by Ricardo Wurmus
parent c27a9d8a88
commit 035989c403
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -14221,3 +14221,28 @@ (define-public python-blosc
This Python package wraps the Blosc library.")
(license license:bsd-3)))
(define-public python-partd
(package
(name "python-partd")
(version "0.3.8")
(source
(origin
(method url-fetch)
(uri (pypi-uri "partd" version))
(sha256
(base32
"03s0i5qfgkx6y24bmfgyd5hnsjznkbbfafwb2khf7k9790f1yab7"))))
(build-system python-build-system)
(propagated-inputs
`(("python-blosc" ,python-blosc)
("python-locket" ,python-locket)
("python-numpy" ,python-numpy)
("python-pandas" ,python-pandas)
("python-pyzmq" ,python-pyzmq)
("python-toolz" ,python-toolz)))
(home-page "https://github.com/dask/partd/")
(synopsis "Appendable key-value storage")
(description "Partd stores key-value pairs. Values are raw bytes. We
append on old values. Partd excels at shuffling operations.")
(license license:bsd-3)))