nixpkgs/pkgs/development/python-modules/diskcache/default.nix

27 lines
506 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, tox
}:
buildPythonPackage rec {
pname = "diskcache";
2019-10-24 06:47:29 +00:00
version = "4.1.0";
src = fetchPypi {
inherit pname version;
2019-10-24 06:47:29 +00:00
sha256 = "bcee5a59f9c264e2809e58d01be6569a3bbb1e36a1e0fb83f7ef9b2075f95ce0";
};
checkInputs = [
tox
];
meta = with lib; {
description = "Disk and file backed persistent cache";
homepage = "http://www.grantjenks.com/docs/diskcache/";
license = licenses.asl20;
maintainers = [ maintainers.costrouc ];
};
}