depot/third_party/nixpkgs/pkgs/development/python-modules/fakeredis/default.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

68 lines
1.3 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
hypothesis,
jsonpath-ng,
lupa,
poetry-core,
pyprobables,
pytest-asyncio,
pytest-mock,
pytestCheckHook,
pythonOlder,
redis,
sortedcontainers,
}:
buildPythonPackage rec {
pname = "fakeredis";
version = "2.23.5";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "dsoftwareinc";
repo = "fakeredis-py";
rev = "refs/tags/v${version}";
hash = "sha256-gwTOtwBOHl6FNL0ekOq2rewwT/XoQ31+cyxU/OCBOTA=";
};
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 ];
};
}