forked from mirrors/nixpkgs
python3Packages.cachey: init at 0.2.1
This commit is contained in:
parent
607930d95e
commit
15423f6249
30
pkgs/development/python-modules/cachey/default.nix
Normal file
30
pkgs/development/python-modules/cachey/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{ 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 ];
|
||||
};
|
||||
}
|
|
@ -1396,6 +1396,8 @@ in {
|
|||
|
||||
cachetools = callPackage ../development/python-modules/cachetools { };
|
||||
|
||||
cachey = callPackage ../development/python-modules/cachey { };
|
||||
|
||||
cachy = callPackage ../development/python-modules/cachy { };
|
||||
|
||||
cadquery = callPackage ../development/python-modules/cadquery {
|
||||
|
|
Loading…
Reference in a new issue