pythonPackages.diskcache: init at 4.0.0

This commit is contained in:
Chris Ostrouchov 2019-07-12 23:33:25 -04:00
parent ffc44dccdb
commit bd21da208b
No known key found for this signature in database
GPG Key ID: 9ED59B0AB1EAF573
2 changed files with 28 additions and 0 deletions

View File

@ -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 ];
};
}

View File

@ -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 { };