summaryrefslogtreecommitdiff
path: root/gnu/packages/python-compression.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-03-13 11:56:01 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-03-13 12:23:19 +0000
commit82467ac1cde7eb933f319def3cdc9006df162ae6 (patch)
treec49fffcbacec232cf52ea0cc43913ac9147ef09e /gnu/packages/python-compression.scm
parent665ad661341c4f1c24cfaf4ceff3e54c83768c8e (diff)
gnu: python-zipfile2: Move to python-compression.
* gnu/packages/python-xyz.scm (python-zipfile2): Move from here ... * gnu/packages/python-compression.scm: ... to here. Change-Id: I70701db8244adc10b4c5777e55fed042bf3a06d5
Diffstat (limited to 'gnu/packages/python-compression.scm')
-rw-r--r--gnu/packages/python-compression.scm24
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/python-compression.scm b/gnu/packages/python-compression.scm
index 746402dde8c..61d15462c96 100644
--- a/gnu/packages/python-compression.scm
+++ b/gnu/packages/python-compression.scm
@@ -938,6 +938,30 @@ files (.Z), such as the ones created by Unix's shell tool compress.")
938Python.") 938Python.")
939 (license license:bsd-3))) 939 (license license:bsd-3)))
940 940
941(define-public python-zipfile2
942 (package
943 (name "python-zipfile2")
944 (version "0.0.12")
945 (source
946 (origin
947 (method git-fetch)
948 (uri (git-reference
949 (url "https://github.com/itziakos/zipfile2/")
950 (commit (string-append "v" version))))
951 (file-name (git-file-name name version))
952 (sha256
953 (base32 "1hmq33r3ffrrvm5nggsp69cjdbgjbwn6zbcrs2rhmb8pds0h81q7"))))
954 (build-system pyproject-build-system)
955 (native-inputs
956 (list python-pytest
957 python-setuptools))
958 (home-page "https://github.com/itziakos/zipfile2/")
959 (synopsis "Improved @code{ZipFile} Python class")
960 (description
961 "Zipfile2 is a backward compatible replacement to @code{ZipFile}. It
962provides handling of symlinks, and exception management.")
963 (license license:psfl)))
964
941(define-public python-zipp 965(define-public python-zipp
942 (package 966 (package
943 (name "python-zipp") 967 (name "python-zipp")