Merge pull request #259233 from r-ryantm/auto-update/python310Packages.django-reversion

python310Packages.django-reversion: 5.0.5 -> 5.0.6
This commit is contained in:
OTABI Tomoya 2023-10-06 18:24:29 +09:00 committed by GitHub
commit 9f902e75cf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,14 +7,14 @@
buildPythonPackage rec {
pname = "django-reversion";
version = "5.0.5";
version = "5.0.6";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-JTxpGwpOC+He7Atiw4yfu3W25aj9gdO1iib0YTWXAQY=";
hash = "sha256-buJalwcN2hTz4IK4uZm/vstKnwgv8fhR40TQVqGMk0w=";
};
propagatedBuildInputs = [
@ -31,6 +31,7 @@ src = fetchPypi {
meta = with lib; {
description = "An extension to the Django web framework that provides comprehensive version control facilities";
homepage = "https://github.com/etianen/django-reversion";
changelog = "https://github.com/etianen/django-reversion/blob/v${version}/CHANGELOG.rst";
license = licenses.bsd3;
maintainers = with maintainers; [ ];
};