python3.pkgs.django-cacheops: init at 5.1 (#115916)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
884039f4a1
commit
10422678bc
36
pkgs/development/python-modules/django-cacheops/default.nix
Normal file
36
pkgs/development/python-modules/django-cacheops/default.nix
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
{ buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, lib
|
||||||
|
, django
|
||||||
|
, funcy
|
||||||
|
, redis
|
||||||
|
, six
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "django-cacheops";
|
||||||
|
version = "5.1";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "sha256-1YUc178whzhKH87PqN3bj1UDDu39b98SciW3W8oPmd0=";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
django
|
||||||
|
funcy
|
||||||
|
redis
|
||||||
|
six
|
||||||
|
];
|
||||||
|
|
||||||
|
# tests need a redis server
|
||||||
|
# pythonImportsCheck not possible since DJANGO_SETTINGS_MODULE needs to be set
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A slick ORM cache with automatic granular event-driven invalidation for Django";
|
||||||
|
homepage = "https://github.com/Suor/django-cacheops";
|
||||||
|
license = licenses.bsd3;
|
||||||
|
maintainers = with maintainers; [ petabyteboy ];
|
||||||
|
};
|
||||||
|
}
|
@ -1845,6 +1845,8 @@ in {
|
|||||||
|
|
||||||
django-cache-url = callPackage ../development/python-modules/django-cache-url { };
|
django-cache-url = callPackage ../development/python-modules/django-cache-url { };
|
||||||
|
|
||||||
|
django-cacheops = callPackage ../development/python-modules/django-cacheops { };
|
||||||
|
|
||||||
django_classytags = callPackage ../development/python-modules/django_classytags { };
|
django_classytags = callPackage ../development/python-modules/django_classytags { };
|
||||||
|
|
||||||
django-cleanup = callPackage ../development/python-modules/django-cleanup { };
|
django-cleanup = callPackage ../development/python-modules/django-cleanup { };
|
||||||
|
Loading…
Reference in New Issue
Block a user