diff options
| author | Marius Bakke <mbakke@fastmail.com> | 2020-02-03 15:45:44 +0100 |
|---|---|---|
| committer | Marius Bakke <mbakke@fastmail.com> | 2020-02-03 15:45:44 +0100 |
| commit | 52665d2b6bd709ba46c1e364a6d6164f5f4824ff (patch) | |
| tree | 55fd79b3939c08f6f6e9fe383f0df5e4caa82b57 /gnu/packages/python-compression.scm | |
| parent | 584d08c5c98cb1893e4f44bd1c4191f405b13f01 (diff) | |
| parent | 0a83339bb1429332ee889e9a976aa214ae2ac0db (diff) | |
Merge branch 'staging' into core-updates
Diffstat (limited to 'gnu/packages/python-compression.scm')
| -rw-r--r-- | gnu/packages/python-compression.scm | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/gnu/packages/python-compression.scm b/gnu/packages/python-compression.scm index 7924479185b..2eb09331160 100644 --- a/gnu/packages/python-compression.scm +++ b/gnu/packages/python-compression.scm | |||
| @@ -33,6 +33,7 @@ | |||
| 33 | #:use-module (gnu packages compression) | 33 | #:use-module (gnu packages compression) |
| 34 | #:use-module (gnu packages check) | 34 | #:use-module (gnu packages check) |
| 35 | #:use-module (gnu packages maths) | 35 | #:use-module (gnu packages maths) |
| 36 | #:use-module (gnu packages pkg-config) | ||
| 36 | #:use-module (gnu packages python) | 37 | #:use-module (gnu packages python) |
| 37 | #:use-module (gnu packages python-xyz) | 38 | #:use-module (gnu packages python-xyz) |
| 38 | #:use-module (gnu packages sphinx)) | 39 | #:use-module (gnu packages sphinx)) |
| @@ -85,11 +86,20 @@ Python strings.") | |||
| 85 | (uri (pypi-uri "lz4" version)) | 86 | (uri (pypi-uri "lz4" version)) |
| 86 | (sha256 | 87 | (sha256 |
| 87 | (base32 | 88 | (base32 |
| 88 | "0ghv1xbaq693kgww1x9c22bplz479ls9szjsaa4ig778ls834hm0")))) | 89 | "0ghv1xbaq693kgww1x9c22bplz479ls9szjsaa4ig778ls834hm0")) |
| 90 | (modules '((guix build utils))) | ||
| 91 | (snippet | ||
| 92 | '(begin | ||
| 93 | ;; Remove bundled copy of lz4. | ||
| 94 | (delete-file-recursively "lz4libs") | ||
| 95 | #t)))) | ||
| 89 | (build-system python-build-system) | 96 | (build-system python-build-system) |
| 90 | (native-inputs | 97 | (native-inputs |
| 91 | `(("python-nose" ,python-nose) | 98 | `(("pkg-config" ,pkg-config) |
| 99 | ("python-nose" ,python-nose) | ||
| 92 | ("python-setuptools-scm" ,python-setuptools-scm))) | 100 | ("python-setuptools-scm" ,python-setuptools-scm))) |
| 101 | (inputs | ||
| 102 | `(("lz4" ,lz4))) | ||
| 93 | (home-page "https://github.com/python-lz4/python-lz4") | 103 | (home-page "https://github.com/python-lz4/python-lz4") |
| 94 | (synopsis "LZ4 bindings for Python") | 104 | (synopsis "LZ4 bindings for Python") |
| 95 | (description | 105 | (description |
