Unverified Commit 9f902e75 authored by OTABI Tomoya's avatar OTABI Tomoya Committed by GitHub
Browse files

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

python310Packages.django-reversion: 5.0.5 -> 5.0.6
parents 256c518a 9c8e91a6
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -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; [ ];
  };