python.pkgs.flask-compress: 1.3.2 -> 1.4.0

This commit is contained in:
Jörg Thalheim
2017-08-27 13:30:51 +01:00
committed by Frederik Rietdijk
parent b4dbd7fdb8
commit 8bc620ddc2
2 changed files with 21 additions and 17 deletions

View File

@@ -0,0 +1,20 @@
{ stdenv, fetchPypi, buildPythonPackage, flask }:
buildPythonPackage rec {
name = "${pname}-${version}";
version = "1.4.0";
pname = "Flask-Compress";
src = fetchPypi {
inherit pname version;
sha256 = "1cxdbdiyxkspg7vkchfmaqr7c6q79gwvakna3fjcc6nivps971j6";
};
propagatedBuildInputs = [ flask ];
meta = with stdenv.lib; {
description = "Compress responses in your Flask app with gzip";
homepage = "https://libwilliam.github.io/flask-compress/";
license = licenses.mit;
};
}