depot/third_party/nixpkgs/pkgs/development/python-modules/cashews/default.nix

70 lines
1.3 KiB
Nix

{
bitarray,
buildPythonPackage,
dill,
diskcache,
fetchFromGitHub,
hiredis,
hypothesis,
lib,
pytest,
pytest-asyncio,
pytest-cov-stub,
pytest-rerunfailures,
pytestCheckHook,
redis,
setuptools,
xxhash,
}:
buildPythonPackage rec {
pname = "cashews";
version = "7.3.1";
pyproject = true;
src = fetchFromGitHub {
owner = "Krukov";
repo = "cashews";
rev = "refs/tags/${version}";
hash = "sha256-GS6QnWCVUgxj5uiH13jUDvRBadAB0xcZd4pb0+4q6gk=";
};
build-system = [ setuptools ];
optional-dependencies = {
dill = [ dill ];
diskcache = [ diskcache ];
redis = [ redis ];
speedup = [
bitarray
hiredis
xxhash
];
};
nativeCheckInputs = [
hypothesis
pytest
pytest-asyncio
pytest-cov-stub
pytest-rerunfailures
pytestCheckHook
];
disabledTests = [
# these tests require too many dependencies
"redis"
"diskcache"
"integration"
];
pythonImportsCheck = [ "cashews" ];
meta = {
description = "Cache tools with async power";
homepage = "https://github.com/Krukov/cashews/";
changelog = "https://github.com/Krukov/cashews/releases/tag/${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ moraxyc ];
};
}