python.pkgs.flask-caching: init at 1.4.0

This commit is contained in:
Robert Schütz 2018-06-29 19:21:58 +02:00
parent 0c083fc1f6
commit da7d4c3676
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ lib, buildPythonPackage, fetchPypi, flask, pytest, pytestcov }:
buildPythonPackage rec {
pname = "Flask-Caching";
version = "1.4.0";
src = fetchPypi {
inherit pname version;
sha256 = "e34f24631ba240e09fe6241e1bf652863e0cff06a1a94598e23be526bc2e4985";
};
propagatedBuildInputs = [ flask ];
checkInputs = [ pytest pytestcov ];
checkPhase = ''
py.test
'';
# https://github.com/sh4nks/flask-caching/pull/74
doCheck = false;
meta = with lib; {
description = "Adds caching support to your Flask application";
homepage = https://github.com/sh4nks/flask-caching;
license = licenses.bsd3;
};
}

View file

@ -5527,6 +5527,8 @@ in {
};
};
flask-caching = callPackage ../development/python-modules/flask-caching { };
flask-common = callPackage ../development/python-modules/flask-common { };
flask-compress = callPackage ../development/python-modules/flask-compress { };