nixpkgs/pkgs/development/python-modules/cachelib/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
715 B
Nix
Raw Normal View History

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