Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / diskcache / default.nix
blob6f275a01fa70ad86d118cce81f8d463564b6066e
1 { lib
2 , stdenv
3 , buildPythonPackage
4 , fetchFromGitHub
5 , pytest-django
6 , pytest-xdist
7 , pytestCheckHook
8 , pythonOlder
9 }:
11 buildPythonPackage rec {
12   pname = "diskcache";
13   version = "5.4.0";
14   format = "setuptools";
16   disabled = pythonOlder "3.6";
18   src = fetchFromGitHub {
19     owner = "grantjenks";
20     repo = "python-diskcache";
21     rev = "v${version}";
22     hash = "sha256-c/k8mx/T4RkseDobJ2gtcuom0A6Ewyw4aP2Bk9pxV+o=";
23   };
25   nativeCheckInputs = [
26     pytest-django
27     pytest-xdist
28     pytestCheckHook
29   ];
31   postPatch = ''
32     sed -i "/--cov/d" tox.ini
33   '';
35   # Darwin sandbox causes most tests to fail
36   doCheck = !stdenv.isDarwin;
38   disabledTests = [
39     # Very time sensitive, can fail on over subscribed machines
40     "test_incr_update_keyerror"
41     # AssertionError: 'default' is not None
42     "test_decr_version"
43     "test_incr_version"
44     "test_get_or_set"
45     "test_get_many"
46     # see https://github.com/grantjenks/python-diskcache/issues/260
47     "test_cache_write_unpicklable_object"
48   ];
50   pythonImportsCheck = [
51     "diskcache"
52   ];
54   meta = with lib; {
55     description = "Disk and file backed persistent cache";
56     homepage = "http://www.grantjenks.com/docs/diskcache/";
57     license = licenses.asl20;
58     maintainers = with maintainers; [ ];
59   };