linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / cachetools / default.nix
bloba160c5ea94c543e4855b417bb5cb60d74fb00a00
1 { lib
2 , buildPythonPackage
3 , isPy27
4 , fetchFromGitHub
5 , pytestCheckHook
6 }:
8 buildPythonPackage rec {
9   pname = "cachetools";
10   version = "4.2.1";
12   disabled = isPy27;
14   src = fetchFromGitHub {
15     owner = "tkem";
16     repo = pname;
17     rev = "v${version}";
18     sha256 = "1b662ph8m2d05d2vi3izgnr6v7h9zfvscfsaaw8nhdmmm15ivfa6";
19   };
21   checkInputs = [ pytestCheckHook ];
23   pythonImportsCheck = [ "cachetools" ];
25   meta = with lib; {
26     description = "Extensible memoizing collections and decorators";
27     homepage = "https://github.com/tkem/cachetools";
28     license = with licenses; [ mit ];
29     maintainers = with maintainers; [ fab ];
30   };