3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/cachelib/default.nix

35 lines
700 B
Nix
Raw Normal View History

2021-07-09 20:52:36 +01:00
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytest-xprocess
, pytestCheckHook
, pythonOlder
}:
2019-05-30 14:24:57 +01:00
buildPythonPackage rec {
pname = "cachelib";
version = "0.3.0";
2021-07-09 20:52:36 +01:00
disabled = pythonOlder "3.6";
2019-05-30 14:24:57 +01:00
2021-07-09 20:52:36 +01:00
src = fetchFromGitHub {
owner = "pallets";
repo = pname;
rev = version;
sha256 = "sha256-ssyHNlrSrG8YHRS131jJtmgl6eMTNdet1Hf0nTxL8sM=";
2019-05-30 14:24:57 +01:00
};
2021-07-09 20:52:36 +01:00
checkInputs = [
pytest-xprocess
pytestCheckHook
];
pythonImportsCheck = [ "cachelib" ];
meta = with lib; {
2019-05-30 14:24:57 +01:00
homepage = "https://github.com/pallets/cachelib";
description = "Collection of cache libraries in the same API interface";
license = licenses.bsd3;
maintainers = with maintainers; [ gebner ];
};
}