mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
python.pkgs.flask-compress: fix build
This commit is contained in:
parent
c0a7634bba
commit
271b696d93
@ -1,4 +1,6 @@
|
||||
{ stdenv, fetchPypi, buildPythonPackage, flask }:
|
||||
{ stdenv, fetchPypi, buildPythonPackage, flask
|
||||
, brotli
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
version = "1.5.0";
|
||||
@ -9,7 +11,7 @@ buildPythonPackage rec {
|
||||
sha256 = "f367b2b46003dd62be34f7fb1379938032656dca56377a9bc90e7188e4289a7c";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ flask ];
|
||||
propagatedBuildInputs = [ flask brotli ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Compress responses in your Flask app with gzip";
|
||||
|
Loading…
Reference in New Issue
Block a user