mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
31 lines
844 B
Nix
31 lines
844 B
Nix
{ lib, buildPythonPackage, fetchPypi, isPy27, flask, pytestCheckHook, pytest-cov, pytest-xprocess, pytestcache }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "Flask-Caching";
|
|
version = "1.10.1";
|
|
disabled = isPy27; # invalid python2 syntax
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "cf19b722fcebc2ba03e4ae7c55b532ed53f0cbf683ce36fafe5e881789a01c00";
|
|
};
|
|
|
|
propagatedBuildInputs = [ flask ];
|
|
|
|
checkInputs = [ pytestCheckHook pytest-cov pytest-xprocess pytestcache ];
|
|
|
|
disabledTests = [
|
|
# backend_cache relies on pytest-cache, which is a stale package from 2013
|
|
"backend_cache"
|
|
# optional backends
|
|
"Redis"
|
|
"Memcache"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Adds caching support to your Flask application";
|
|
homepage = "https://github.com/sh4nks/flask-caching";
|
|
license = licenses.bsd3;
|
|
};
|
|
}
|