From cbe45180d16129b1a591d204d0b6f01246c009bc Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 26 Feb 2023 20:02:40 +0100 Subject: [PATCH] python310Packages.django-cacheops: disabled on unsupported Python releases --- .../python-modules/django-cacheops/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/django-cacheops/default.nix b/pkgs/development/python-modules/django-cacheops/default.nix index 9edd81b553fc..2e1a791ac4da 100644 --- a/pkgs/development/python-modules/django-cacheops/default.nix +++ b/pkgs/development/python-modules/django-cacheops/default.nix @@ -1,17 +1,20 @@ -{ buildPythonPackage +{ lib +, buildPythonPackage , fetchPypi -, lib , django , funcy , redis -, six , pytest-django , pytestCheckHook +, pythonOlder }: buildPythonPackage rec { pname = "django-cacheops"; version = "6.2"; + format = "setuptools"; + + disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; @@ -22,7 +25,6 @@ buildPythonPackage rec { django funcy redis - six ]; nativeCheckInputs = [