diff options
author | Roel Janssen <roel@gnu.org> | 2023-03-05 14:28:04 +0100 |
---|---|---|
committer | Roel Janssen <roel@gnu.org> | 2023-03-05 14:28:04 +0100 |
commit | e43220973bc396040096700482c1384f52a17e5a (patch) | |
tree | ee1d29fa6440a595760649969d3c065373b426ed /gnu/packages/python-xyz.scm | |
parent | 6b792019561d378c92d903d0dc53c3e9719f0fbd (diff) | |
download | guix-e43220973bc396040096700482c1384f52a17e5a.tar guix-e43220973bc396040096700482c1384f52a17e5a.tar.gz |
gnu: Add python-zipfly.
* gnu/packages/python-xyz.scm (python-zipfly): New variable.
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index db9067e699..83f3ec02ea 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -10924,6 +10924,25 @@ addition to a bunch of aliases.") command pipeline functionality.") (license license:bsd-3))) +(define-public python-zipfly + (package + (name "python-zipfly") + (version "6.0.5") + (source + (origin + (method url-fetch) + (uri (pypi-uri "zipfly" version)) + (sha256 + (base32 + "1h7g922a8lsqd69j8blgcgg0lcd8kz51b2p4glfqmgx4vi1nkick")))) + (build-system python-build-system) + (home-page "http://github.com/sandes/zipfly") + (synopsis "Zip archive generator") + (description "ZipFly is a zip archive generator. It was created to +generate very large zip archives for immediate sending out to clients, or +for writing large zip archives without memory inflation.") + (license license:bsd-2))) + (define-public python-zipstream-new (package (name "python-zipstream-new") |