mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add python-brotli.
* gnu/packages/python-compression.scm (python-brotli): New variable.
This commit is contained in:
parent
0449f4ebab
commit
e297edbfe5
1 changed files with 21 additions and 1 deletions
|
@ -3,7 +3,7 @@
|
|||
;;; Copyright © 2017, 2019 Ricardo Wurmus <rekado@elephly.net>
|
||||
;;; Copyright © 2017 Nikita <nikita@n0.is>
|
||||
;;; Copyright © 2017 Julien Lepiller <julien@lepiller.eu>
|
||||
;;; Copyright © 2018, 2019 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2018, 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2020 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
||||
;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
|
||||
;;;
|
||||
|
@ -133,6 +133,26 @@ (define-public python-lzstring
|
|||
(define-public python2-lzstring
|
||||
(package-with-python2 python-lzstring))
|
||||
|
||||
(define-public python-brotli
|
||||
(package
|
||||
(name "python-brotli")
|
||||
(version "1.0.7")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "Brotli" version ".zip"))
|
||||
(sha256
|
||||
(base32
|
||||
"19x5dqxckb62n37mpnczp21rfxqvgpm0ki5ds8ac65zx8hbxqf05"))))
|
||||
(build-system python-build-system)
|
||||
(native-inputs
|
||||
`(("unzip" ,unzip)))
|
||||
(home-page "https://github.com/google/brotli")
|
||||
(synopsis "Python bindings for the Brotli compression library")
|
||||
(description
|
||||
"This package provides python bindings for the Brotli compression library.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public bitshuffle
|
||||
(package
|
||||
(name "bitshuffle")
|
||||
|
|
Loading…
Reference in a new issue