depot/third_party/nixpkgs/pkgs/development/python-modules/fakeredis/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

77 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.21.3";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "dsoftwareinc";
repo = "fakeredis-py";
rev = "refs/tags/v${version}";
hash = "sha256-GIg+a8G5S0dmbvMKqS/Vn+wzNM6iNIs3bKPqhecsQt4=";
};
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
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"
];
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 ];
};
}