>From 0d09e7fb5d68f30995663d9ff9621a234678c546 Mon Sep 17 00:00:00 2001 From: kiasoc5 Date: Sun, 27 Mar 2022 15:27:43 -0400 Subject: [PATCH 1/2] gnu: Add python-flask-compress. * gnu/packages/python-web.scm (python-flask-compress): New variable. --- gnu/packages/python-web.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 9c2a48166a..3de2629b29 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -6388,3 +6388,23 @@ (define-public python-tweepy (description "This package provides @code{Tweepy}, an easy-to-use Python library for accessing the Twitter API.") (license license:expat))) + +(define-public python-flask-compress + (package + (name "python-flask-compress") + (version "1.11") + (source + (origin + (method url-fetch) + (uri (pypi-uri "Flask-Compress" version)) + (sha256 + (base32 "0762n6g1rz1n01dh0y16fgpi262kl01m0z9liv52asvd8hng6sgm")))) + (build-system python-build-system) + (propagated-inputs (list python-brotli python-flask)) + (native-inputs (list python-setuptools-scm)) + (home-page "https://github.com/colour-science/flask-compress") + (synopsis + "Compress responses in your Flask app with gzip, deflate or brotli.") + (description + "Compress responses in your Flask app with gzip, deflate or brotli.") + (license license:expat))) base-commit: 2344fb10972a4cefead8e7aa3e0b807da4cf4570 prerequisite-patch-id: 7bac83669fb48a2cf3bf087016093da017ba7ec5 -- 2.35.1