[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/46: gnu: Add python-brotli.
From: |
guix-commits |
Subject: |
06/46: gnu: Add python-brotli. |
Date: |
Tue, 21 Jul 2020 08:49:34 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit e297edbfe5b1d711677a93bcab80e47748c66cde
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Tue Jul 21 10:49:31 2020 +0300
gnu: Add python-brotli.
* gnu/packages/python-compression.scm (python-brotli): New variable.
---
gnu/packages/python-compression.scm | 22 +++++++++++++++++++++-
1 file changed, 21 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/python-compression.scm
b/gnu/packages/python-compression.scm
index f853bdc..730b247 100644
--- a/gnu/packages/python-compression.scm
+++ b/gnu/packages/python-compression.scm
@@ -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 @@ the LZ4 frame format.")
(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")
- branch master updated (938bb06 -> faec049), guix-commits, 2020/07/21
- 01/46: gnu: Add python-atpublic., guix-commits, 2020/07/21
- 03/46: gnu: Add python-importlib-resources., guix-commits, 2020/07/21
- 06/46: gnu: Add python-brotli.,
guix-commits <=
- 11/46: gnu: Add python-readme-renderer., guix-commits, 2020/07/21
- 12/46: gnu: Add python-geopy., guix-commits, 2020/07/21
- 02/46: gnu: Add python-authres., guix-commits, 2020/07/21
- 07/46: gnu: Add python-pytest-aiohttp., guix-commits, 2020/07/21
- 18/46: gnu: Add python-lazr-delegates., guix-commits, 2020/07/21
- 25/46: gnu: Add python-rjsmin., guix-commits, 2020/07/21
- 27/46: gnu: Add python-robot-detection., guix-commits, 2020/07/21
- 04/46: gnu: Add python-dkimpy., guix-commits, 2020/07/21
- 05/46: gnu: Add python-pytest-services., guix-commits, 2020/07/21
- 10/46: gnu: Add python-geographiclib., guix-commits, 2020/07/21