pythonPackages.django_modelcluster: disable for Python older than 3.5

This commit is contained in:
Mario Rodas
2019-08-25 06:43:24 -05:00
parent 2c8a0aaedb
commit d97274a642

View File

@@ -2,6 +2,7 @@
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, pytz , pytz
, pythonOlder
, six , six
}: }:
@@ -14,6 +15,8 @@ buildPythonPackage rec {
sha256 = "0zcn1b0lp9dg6xvz8p8v1hrrgqj71izqalqz2dp1nz5rbj3s34x2"; sha256 = "0zcn1b0lp9dg6xvz8p8v1hrrgqj71izqalqz2dp1nz5rbj3s34x2";
}; };
disabled = pythonOlder "3.5";
doCheck = false; doCheck = false;
propagatedBuildInputs = [ pytz six ]; propagatedBuildInputs = [ pytz six ];