diff options
author | Ricardo Wurmus <[email protected]> | 2017-08-30 17:07:34 +0200 |
---|---|---|
committer | Ricardo Wurmus <[email protected]> | 2017-08-30 17:31:59 +0200 |
commit | e7c76b066134122077802fb9899ba8c21eb4cd8c (patch) | |
tree | cb9d8aef52fe309e3903d6af3bc9f1751a88e3f6 | |
parent | b9319c1e22e96345ad22bfe43be27ec87ff51c10 (diff) |
gnu: Add python-lzstring.
* gnu/packages/compression.scm (python-lzstring, python2-lzstring): New
variables.
-rw-r--r-- | gnu/packages/compression.scm | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm index 8c71f4fc6c..bc10536766 100644 --- a/gnu/packages/compression.scm +++ b/gnu/packages/compression.scm @@ -4,7 +4,7 @@ ;;; Copyright © 2014, 2015 Mark H Weaver <[email protected]> ;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <[email protected]> ;;; Copyright © 2015, 2016 Eric Bavier <[email protected]> -;;; Copyright © 2015, 2016 Ricardo Wurmus <[email protected]> +;;; Copyright © 2015, 2016, 2017 Ricardo Wurmus <[email protected]> ;;; Copyright © 2015, 2017 Leo Famulari <[email protected]> ;;; Copyright © 2015 Jeff Mickey <[email protected]> ;;; Copyright © 2015, 2016, 2017 Efraim Flashner <[email protected]> @@ -758,6 +758,28 @@ the LZ4 frame format.") (define-public python2-lz4 (package-with-python2 python-lz4)) +(define-public python-lzstring + (package + (name "python-lzstring") + (version "1.0.3") + (source + (origin + (method url-fetch) + (uri (pypi-uri "lzstring" version)) + (sha256 + (base32 + "1d3ck454y41mii0gcjabpmp2skb7n0f9zk232gycqdv8z2jxakfm")))) + (build-system python-build-system) + (propagated-inputs + `(("python-future" ,python-future))) + (home-page "https://github.com/gkovacs/lz-string-python") + (synopsis "String compression") + (description "Lz-string is a string compressor library for Python.") + (license license:expat))) + +(define-public python2-lzstring + (package-with-python2 python-lzstring)) + (define-public squashfs-tools (package (name "squashfs-tools") |