nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.cachey: init at 0.2.1

+32
+30
pkgs/development/python-modules/cachey/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , typing-extensions 5 + , heapdict 6 + , pytestCheckHook 7 + , pythonOlder 8 + }: buildPythonPackage rec { 9 + pname = "cachey"; 10 + version = "0.2.1"; 11 + format = "setuptools"; 12 + disabled = pythonOlder "3.6"; 13 + src = fetchFromGitHub { 14 + owner = "dask"; 15 + repo = pname; 16 + rev = version; 17 + sha256 = "sha256-5USmuufrrWtmgibpfkjo9NtgN30hdl8plJfythmxM4s="; 18 + }; 19 + propagatedBuildInputs = [ typing-extensions heapdict ]; 20 + checkInputs = [ pytestCheckHook ]; 21 + pythonImportsCheck = [ 22 + "cachey" 23 + ]; 24 + meta = with lib; { 25 + description = "Caching based on computation time and storage space"; 26 + homepage = "https://github.com/dask/cachey/"; 27 + license = licenses.bsd3; 28 + maintainers = with maintainers; [ SomeoneSerge ]; 29 + }; 30 + }
+2
pkgs/top-level/python-packages.nix
··· 1396 1396 1397 1397 cachetools = callPackage ../development/python-modules/cachetools { }; 1398 1398 1399 + cachey = callPackage ../development/python-modules/cachey { }; 1400 + 1399 1401 cachy = callPackage ../development/python-modules/cachy { }; 1400 1402 1401 1403 cadquery = callPackage ../development/python-modules/cadquery {