mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
pythonPackages.django_modelcluster: disable for Python older than 3.5
This commit is contained in:
parent
2c8a0aaedb
commit
d97274a642
1 changed files with 3 additions and 0 deletions
|
@ -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 ];
|
||||
|
|
Loading…
Reference in a new issue