2019-07-08 06:48:42 +01:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, flask, pytest, pytestcov, pytest-xprocess }:
|
2018-06-29 18:21:58 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "Flask-Caching";
|
2019-07-08 06:48:42 +01:00
|
|
|
version = "1.7.2";
|
2018-06-29 18:21:58 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-07-08 06:48:42 +01:00
|
|
|
sha256 = "17jnnmnpdflv120yhsfbnpick06iias6f2hcxmf1mi1nr35kdqjj";
|
2018-06-29 18:21:58 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ flask ];
|
|
|
|
|
2019-07-08 06:48:42 +01:00
|
|
|
checkInputs = [ pytest pytestcov pytest-xprocess ];
|
2018-06-29 18:21:58 +01:00
|
|
|
|
2019-07-08 06:48:42 +01:00
|
|
|
# backend_cache relies on pytest-cache, which is a stale package from 2013
|
2018-06-29 18:21:58 +01:00
|
|
|
checkPhase = ''
|
2019-07-08 06:48:42 +01:00
|
|
|
pytest -k 'not backend_cache'
|
2018-06-29 18:21:58 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Adds caching support to your Flask application";
|
2019-07-08 06:48:42 +01:00
|
|
|
homepage = "https://github.com/sh4nks/flask-caching";
|
2018-06-29 18:21:58 +01:00
|
|
|
license = licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|