diff --git a/pkgs/development/python-modules/django_reversion/default.nix b/pkgs/development/python-modules/django_reversion/default.nix index 6de1ce64328b..348228a8c028 100644 --- a/pkgs/development/python-modules/django_reversion/default.nix +++ b/pkgs/development/python-modules/django_reversion/default.nix @@ -6,11 +6,11 @@ buildPythonPackage rec { pname = "django-reversion"; - version = "3.0.9"; + version = "4.0.0"; src = fetchPypi { inherit pname version; - sha256 = "a5af55f086a3f9c38be2f049c251e06005b9ed48ba7a109473736b1fc95a066f"; + sha256 = "ad6d714b4b9b824e22b88d47201cc0f74b5c4294c8d4e1f8d7ac7c3631ef3188"; }; # tests assume the availability of a mysql/postgresql database @@ -18,10 +18,12 @@ buildPythonPackage rec { propagatedBuildInputs = [ django ]; + pythonImportsCheck = [ "reversion" ]; + meta = with lib; { description = "An extension to the Django web framework that provides comprehensive version control facilities"; homepage = "https://github.com/etianen/django-reversion"; license = licenses.bsd3; + maintainers = with maintainers; [ ]; }; - }