aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/diskcache/default.nix
blob: a62393b7bafc6c0fb1b1da28bd9119eb1b8e24da (plain)
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.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 ];
  };
}