about summary refs log tree commit diff
path: root/pkgs/development/python-modules/cachecontrol/default.nix
blob: 529975f1080bf1d45e1074ffbe4dd62288a4dd9b (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{ lib
, buildPythonPackage
, cherrypy
, fetchFromGitHub
, lockfile
, mock
, msgpack
, pytestCheckHook
, pythonOlder
, redis
, requests
}:

buildPythonPackage rec {
  pname = "cachecontrol";
  version = "0.12.11";
  format = "setuptools";

  disabled = pythonOlder "3.6";

  src = fetchFromGitHub {
    owner = "ionrock";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-uUPIQz/n347Q9G7NDOGuB760B/KxOglUxiS/rYjt5Po=";
  };

  propagatedBuildInputs = [
    msgpack
    requests
  ];

  checkInputs = [
    cherrypy
    mock
    pytestCheckHook
  ] ++ passthru.optional-dependencies.filecache;

  pythonImportsCheck = [
    "cachecontrol"
  ];

  passthru.optional-dependencies = {
    filecache = [ lockfile ];
    redis = [ redis ];
  };

  meta = with lib; {
    description = "Httplib2 caching for requests";
    homepage = "https://github.com/ionrock/cachecontrol";
    license = licenses.asl20;
    maintainers = with maintainers; [ costrouc ];
  };
}