mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-18 14:00:23 +08:00
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
31 lines
768 B
Nix
31 lines
768 B
Nix
{ 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 ];
|
|
nativeCheckInputs = [ 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 ];
|
|
};
|
|
}
|