about summary refs log tree commit diff
path: root/pkgs/development/python-modules/django_modelcluster
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2019-08-25 06:43:24 -0500
committerMario Rodas <marsam@users.noreply.github.com>2019-08-25 06:43:24 -0500
commitd97274a642991ba59225071ec00a9eeba58bf23c (patch)
tree974a0683b12250c6d5003f0078645fb962f0921e /pkgs/development/python-modules/django_modelcluster
parent2c8a0aaedbcfb2fb2ae856e3b0612152e8b9cfbe (diff)
pythonPackages.django_modelcluster: disable for Python older than 3.5
Diffstat (limited to 'pkgs/development/python-modules/django_modelcluster')
-rw-r--r--pkgs/development/python-modules/django_modelcluster/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/django_modelcluster/default.nix b/pkgs/development/python-modules/django_modelcluster/default.nix
index 59dfcd2b9065e..4efd2002b1fd5 100644
--- a/pkgs/development/python-modules/django_modelcluster/default.nix
+++ b/pkgs/development/python-modules/django_modelcluster/default.nix
@@ -2,6 +2,7 @@
 , buildPythonPackage
 , fetchPypi
 , pytz
+, pythonOlder
 , six
 }:
 
@@ -14,6 +15,8 @@ buildPythonPackage rec {
     sha256 = "0zcn1b0lp9dg6xvz8p8v1hrrgqj71izqalqz2dp1nz5rbj3s34x2";
   };
 
+  disabled = pythonOlder "3.5";
+
   doCheck = false;
 
   propagatedBuildInputs = [ pytz six ];