summary refs log tree commit diff
path: root/pkgs/development/python-modules/diskcache/default.nix
blob: f51e3329aee823f60ac66d1aeea063d3b80a37a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ 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 = https://www.grantjenks.com/docs/diskcache/;
    license = licenses.asl20;
    maintainers = [ maintainers.costrouc ];
  };
}