Merge pull request #134655 from r-ryantm/auto-update/python3.8-django-reversion

This commit is contained in:
Martin Weinelt 2021-08-26 20:12:54 +02:00 committed by GitHub
commit ee23ff1320
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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; [ ];
};
}