diff options
| author | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2019-06-25 10:56:34 +0200 |
|---|---|---|
| committer | Ricardo Wurmus <rekado@elephly.net> | 2019-06-26 16:24:58 +0200 |
| commit | 94f960ffed3f4ede944e9b0e4543f425114047d8 (patch) | |
| tree | 71ef318c58c186638cd7d2ce5b227851bc4ee882 /gnu/packages/python-compression.scm | |
| parent | 724a350c87583a5bfd2c0ff440e1f3d40f66b2a3 (diff) | |
gnu: Add python-zipp.
* gnu/packages/python-compression.scm (python-zipp): New variable.
Diffstat (limited to 'gnu/packages/python-compression.scm')
| -rw-r--r-- | gnu/packages/python-compression.scm | 33 |
1 files changed, 31 insertions, 2 deletions
diff --git a/gnu/packages/python-compression.scm b/gnu/packages/python-compression.scm index 88f62d19349..705a7ffa3bb 100644 --- a/gnu/packages/python-compression.scm +++ b/gnu/packages/python-compression.scm | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; GNU Guix --- Functional package management for GNU | 1 | ;;; GNU Guix --- Functional package management for GNU |
| 2 | ;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr> | 2 | ;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr> |
| 3 | ;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net> | 3 | ;;; Copyright © 2017, 2019 Ricardo Wurmus <rekado@elephly.net> |
| 4 | ;;; Copyright © 2017 ng0 <ng0@n0.is> | 4 | ;;; Copyright © 2017 ng0 <ng0@n0.is> |
| 5 | ;;; Copyright © 2017 Julien Lepiller <julien@lepiller.eu> | 5 | ;;; Copyright © 2017 Julien Lepiller <julien@lepiller.eu> |
| 6 | ;;; Copyright © 2018, 2019 Efraim Flashner <efraim@flashner.co.il> | 6 | ;;; Copyright © 2018, 2019 Efraim Flashner <efraim@flashner.co.il> |
| @@ -32,7 +32,8 @@ | |||
| 32 | #:use-module (gnu packages check) | 32 | #:use-module (gnu packages check) |
| 33 | #:use-module (gnu packages maths) | 33 | #:use-module (gnu packages maths) |
| 34 | #:use-module (gnu packages python) | 34 | #:use-module (gnu packages python) |
| 35 | #:use-module (gnu packages python-xyz)) | 35 | #:use-module (gnu packages python-xyz) |
| 36 | #:use-module (gnu packages sphinx)) | ||
| 36 | 37 | ||
| 37 | (define-public python-lzo | 38 | (define-public python-lzo |
| 38 | (package | 39 | (package |
| @@ -205,3 +206,31 @@ install: libbitshuffle.so | |||
| 205 | #t)))))) | 206 | #t)))))) |
| 206 | (inputs '()) | 207 | (inputs '()) |
| 207 | (native-inputs '()))) | 208 | (native-inputs '()))) |
| 209 | |||
| 210 | (define-public python-zipp | ||
| 211 | (package | ||
| 212 | (name "python-zipp") | ||
| 213 | (version "0.5.1") | ||
| 214 | (source | ||
| 215 | (origin | ||
| 216 | (method url-fetch) | ||
| 217 | (uri (pypi-uri "zipp" version)) | ||
| 218 | (sha256 | ||
| 219 | (base32 | ||
| 220 | "1hsv4zwy1pwnbrr63wjjkpwrmnk36ngbkkqw01bj5hcwh1z3m56a")))) | ||
| 221 | (build-system python-build-system) | ||
| 222 | (propagated-inputs | ||
| 223 | `(("python-contextlib2" ,python-contextlib2) | ||
| 224 | ("python-pathlib2" ,python-pathlib2) | ||
| 225 | ("python-rst.linker" ,python-rst.linker))) | ||
| 226 | (native-inputs | ||
| 227 | `(("python-setuptools-scm" ,python-setuptools-scm) | ||
| 228 | ("python-sphinx" ,python-sphinx) | ||
| 229 | ("python-unittest2" ,python-unittest2))) | ||
| 230 | (home-page "https://github.com/jaraco/zipp") | ||
| 231 | (synopsis | ||
| 232 | "Backport of pathlib-compatible object wrapper for zip files") | ||
| 233 | (description | ||
| 234 | "This package provides a @code{pathlib}-compatible @code{Zipfile} object | ||
| 235 | wrapper. It provides a backport of the @code{Path} object.") | ||
| 236 | (license license:expat))) | ||
