mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 14:10:33 +03:00
51 lines
1,016 B
Nix
51 lines
1,016 B
Nix
![]() |
{ lib
|
||
|
, fetchFromGitHub
|
||
|
, pythonOlder
|
||
|
, buildPythonPackage
|
||
|
, django
|
||
|
, redis
|
||
|
, pytestCheckHook
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "django-redis";
|
||
|
version = "5.0.0";
|
||
|
format = "setuptools";
|
||
|
disabled = pythonOlder "3.6";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "jazzband";
|
||
|
repo = "django-redis";
|
||
|
rev = version;
|
||
|
sha256 = "1np10hfyg4aamlz7vav9fy80gynb1lhl2drqkbckr3gg1gbz6crj";
|
||
|
};
|
||
|
|
||
|
postPatch = ''
|
||
|
sed -i '/-cov/d' setup.cfg
|
||
|
'';
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
django
|
||
|
redis
|
||
|
];
|
||
|
|
||
|
pythonImportsCheck = [
|
||
|
"django_redis"
|
||
|
];
|
||
|
|
||
|
checkInputs = [
|
||
|
pytestCheckHook
|
||
|
];
|
||
|
|
||
|
disabledTestPaths = [
|
||
|
"tests/test_backend.py" # django.core.exceptions.ImproperlyConfigured: Requested setting DJANGO_REDIS_SCAN_ITERSIZE, but settings are not configured.
|
||
|
];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Full featured redis cache backend for Django";
|
||
|
homepage = "https://github.com/jazzband/django-redis";
|
||
|
license = licenses.bsd3;
|
||
|
maintainers = with maintainers; [ hexa ];
|
||
|
};
|
||
|
}
|