~ruther/guix-local

e9f6a935fbff9cfc1e5d8045aebe7230dbb5dbdf — Tobias Geerinckx-Rice 8 years ago 54360c9
gnu: python-lz4: Update to 0.10.1.

* gnu/packages/compression.scm (python-lz4): Update to 0.10.1.
[native-inputs]: Add python-setuptools-scm.
1 files changed, 4 insertions(+), 3 deletions(-)

M gnu/packages/compression.scm
M gnu/packages/compression.scm => gnu/packages/compression.scm +4 -3
@@ 742,17 742,18 @@ time for compression ratio.")
(define-public python-lz4
  (package
    (name "python-lz4")
    (version "0.8.2")
    (version "0.10.1")
    (source
     (origin
       (method url-fetch)
       (uri (pypi-uri "lz4" version))
       (sha256
        (base32
         "1irad4sq4hdr30fr53smvv3zzk4rddcf9b4jx19w8s9xsxhr1x3b"))))
         "0ghv1xbaq693kgww1x9c22bplz479ls9szjsaa4ig778ls834hm0"))))
    (build-system python-build-system)
    (native-inputs
     `(("python-nose" ,python-nose)))
     `(("python-nose" ,python-nose)
       ("python-setuptools-scm" ,python-setuptools-scm)))
    (home-page "https://github.com/python-lz4/python-lz4")
    (synopsis "LZ4 Bindings for Python")
    (description