nixpkgs/pkgs/development/python-modules/diskcache/default.nix
c0bw3b 69b393ace5 Treewide: update some problematic homepages
These URLs are reported as problematic by Repology.
It could be a permanent redirection
or the page does not exist anymore
2019-12-08 10:21:29 -08:00

27 lines
506 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, tox
}:
buildPythonPackage rec {
pname = "diskcache";
version = "4.1.0";
src = fetchPypi {
inherit pname version;
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 ];
};
}