Merge pull request #67054 from r-ryantm/auto-update/python3.7-django-modelcluster

python37Packages.django_modelcluster: 4.4 -> 5.0
This commit is contained in:
Mario Rodas 2019-08-25 07:13:58 -05:00 committed by GitHub
commit 9a733a88d9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,18 +2,21 @@
, buildPythonPackage
, fetchPypi
, pytz
, pythonOlder
, six
}:
buildPythonPackage rec {
pname = "django-modelcluster";
version = "4.4";
version = "5.0";
src = fetchPypi {
inherit pname version;
sha256 = "02mrs7aapabapfh7h7n71s8r7zxkmad3yk4rdyfwcf0x36326rsr";
sha256 = "0zcn1b0lp9dg6xvz8p8v1hrrgqj71izqalqz2dp1nz5rbj3s34x2";
};
disabled = pythonOlder "3.5";
doCheck = false;
propagatedBuildInputs = [ pytz six ];