pythonPackages.diskcache: init at 4.0.0
This commit is contained in:
parent
ffc44dccdb
commit
bd21da208b
|
@ -0,0 +1,26 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, tox
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "diskcache";
|
||||
version = "4.0.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "7c20b58ed07d03bbfba793f823d1fc27a61e590371fe6011fa1319a25c028cd1";
|
||||
};
|
||||
|
||||
checkInputs = [
|
||||
tox
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Disk and file backed persistent cache";
|
||||
homepage = https://www.grantjenks.com/docs/diskcache/;
|
||||
license = licenses.asl20;
|
||||
maintainers = [ maintainers.costrouc ];
|
||||
};
|
||||
}
|
|
@ -5613,6 +5613,8 @@ in {
|
|||
|
||||
node-semver = callPackage ../development/python-modules/node-semver { };
|
||||
|
||||
diskcache = callPackage ../development/python-modules/diskcache { };
|
||||
|
||||
distro = callPackage ../development/python-modules/distro { };
|
||||
|
||||
bz2file = callPackage ../development/python-modules/bz2file { };
|
||||
|
|
Loading…
Reference in New Issue