2021-03-09 03:18:52 +00:00
|
|
|
{ lib
|
|
|
|
, aioredis
|
|
|
|
, async_generator
|
|
|
|
, buildPythonPackage
|
2022-01-27 00:19:43 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, fetchpatch
|
2021-03-09 03:18:52 +00:00
|
|
|
, hypothesis
|
|
|
|
, lupa
|
|
|
|
, pytest-asyncio
|
|
|
|
, pytest-mock
|
|
|
|
, pytestCheckHook
|
|
|
|
, pythonOlder
|
|
|
|
, redis
|
|
|
|
, six
|
|
|
|
, sortedcontainers
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "fakeredis";
|
2021-12-06 16:07:01 +00:00
|
|
|
version = "1.7.0";
|
|
|
|
format = "setuptools";
|
|
|
|
|
2022-01-27 00:19:43 +00:00
|
|
|
disabled = pythonOlder "3.7";
|
2021-03-09 03:18:52 +00:00
|
|
|
|
2022-01-27 00:19:43 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jamesls";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
|
|
|
hash = "sha256-P6PUg9SY0Qshlvj+iV1xdrzVLJ9JXUV4cGHUynKO3m0=";
|
2021-03-09 03:18:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
aioredis
|
|
|
|
lupa
|
|
|
|
redis
|
|
|
|
six
|
|
|
|
sortedcontainers
|
|
|
|
];
|
|
|
|
|
|
|
|
checkInputs = [
|
|
|
|
async_generator
|
|
|
|
hypothesis
|
|
|
|
pytest-asyncio
|
|
|
|
pytest-mock
|
|
|
|
pytestCheckHook
|
|
|
|
];
|
|
|
|
|
2022-01-27 00:19:43 +00:00
|
|
|
patches = [
|
|
|
|
# Support for redis <= 4.1.0, https://github.com/jamesls/fakeredis/pull/324
|
|
|
|
(fetchpatch {
|
|
|
|
name = "support-redis-4.1.0.patch";
|
|
|
|
url = "https://github.com/jamesls/fakeredis/commit/8ef8dc6dacc9baf571d66a25ffbf0fadd7c70f78.patch";
|
|
|
|
sha256 = "sha256-4DrF/5WEWQWlJZtAi4qobMDyRAAcO/weHIaK9waN00k=";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2021-09-18 10:52:07 +00:00
|
|
|
disabledTestPaths = [
|
|
|
|
# AttributeError: 'AsyncGenerator' object has no attribute XXXX
|
|
|
|
"test/test_aioredis2.py"
|
|
|
|
];
|
|
|
|
|
2021-12-06 16:07:01 +00:00
|
|
|
pythonImportsCheck = [
|
|
|
|
"fakeredis"
|
|
|
|
];
|
2021-03-09 03:18:52 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Fake implementation of Redis API";
|
|
|
|
homepage = "https://github.com/jamesls/fakeredis";
|
|
|
|
license = with licenses; [ mit ];
|
|
|
|
maintainers = with maintainers; [ fab ];
|
|
|
|
};
|
|
|
|
}
|