My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/cachey/default.nix

30 lines
762 B

{ lib
, buildPythonPackage
, fetchFromGitHub
, typing-extensions
, heapdict
, pytestCheckHook
, pythonOlder
}: buildPythonPackage rec {
pname = "cachey";
version = "0.2.1";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "dask";
repo = pname;
rev = version;
sha256 = "sha256-5USmuufrrWtmgibpfkjo9NtgN30hdl8plJfythmxM4s=";
};
propagatedBuildInputs = [ typing-extensions heapdict ];
checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"cachey"
];
meta = with lib; {
description = "Caching based on computation time and storage space";
homepage = "https://github.com/dask/cachey/";
license = licenses.bsd3;
maintainers = with maintainers; [ SomeoneSerge ];
};
}