depot/third_party/nixpkgs/pkgs/development/python-modules/fakeredis/default.nix
Default email 5c370c0b2a Project import generated by Copybara.
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
2024-05-15 17:35:15 +02:00

69 lines
1.3 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
hypothesis,
jsonpath-ng,
lupa,
poetry-core,
pybloom-live,
pyprobables,
pytest-asyncio,
pytest-mock,
pytestCheckHook,
pythonOlder,
redis,
sortedcontainers,
}:
buildPythonPackage rec {
pname = "fakeredis";
version = "2.23.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "dsoftwareinc";
repo = "fakeredis-py";
rev = "refs/tags/v${version}";
hash = "sha256-qiqJO8uZ3vy9TpTHmExlUoQ78avPVqlKn0jgvDsKdP0=";
};
build-system = [ poetry-core ];
dependencies = [
redis
sortedcontainers
];
nativeCheckInputs = [
hypothesis
pytest-asyncio
pytest-mock
pytestCheckHook
];
passthru.optional-dependencies = {
lua = [ lupa ];
json = [ jsonpath-ng ];
bf = [ pyprobables ];
cf = [ pyprobables ];
probabilistic = [ pyprobables ];
};
pythonImportsCheck = [ "fakeredis" ];
disabledTests = [
# AssertionError
"test_command"
];
meta = with lib; {
description = "Fake implementation of Redis API";
homepage = "https://github.com/dsoftwareinc/fakeredis-py";
changelog = "https://github.com/cunla/fakeredis-py/releases/tag/v${version}";
license = with licenses; [ bsd3 ];
maintainers = with maintainers; [ fab ];
};
}