about summary refs log tree commit diff
path: root/pkgs/development/python-modules/django-cacheops
diff options
context:
space:
mode:
authorMilan <me@pbb.lc>2021-03-21 00:39:46 +0100
committerGitHub <noreply@github.com>2021-03-21 00:39:46 +0100
commit10422678bc95785677ff787a41926514221de93b (patch)
treecdb76544d789b1c2facd21a4a8e9f58e6d5eeed1 /pkgs/development/python-modules/django-cacheops
parent884039f4a13f275ddb6f140ed9df953a632520c5 (diff)
python3.pkgs.django-cacheops: init at 5.1 (#115916)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
Diffstat (limited to 'pkgs/development/python-modules/django-cacheops')
-rw-r--r--pkgs/development/python-modules/django-cacheops/default.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/django-cacheops/default.nix b/pkgs/development/python-modules/django-cacheops/default.nix
new file mode 100644
index 0000000000000..c9344d3bd0106
--- /dev/null
+++ b/pkgs/development/python-modules/django-cacheops/default.nix
@@ -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 ];
+  };
+}