Merge pull request #201945 from r-ryantm/auto-update/python310Packages.django-taggit

python310Packages.django-taggit: 3.0.0 -> 3.1.0

authored by Fabian Affolter and committed by GitHub 690ffff0 0db9431e

+4 -3
+4 -3
pkgs/development/python-modules/django-taggit/default.nix
··· 9 10 buildPythonPackage rec { 11 pname = "django-taggit"; 12 - version = "3.0.0"; 13 format = "setuptools"; 14 disabled = pythonOlder "3.6"; 15 16 src = fetchPypi { 17 inherit pname version; 18 - sha256 = "sha256-5kW4491PhZidXvXFo9Xrvlut9dHlG1PkLQr3JiQLALk="; 19 }; 20 21 propagatedBuildInputs = [ ··· 42 meta = with lib; { 43 description = "Simple tagging for django"; 44 homepage = "https://github.com/jazzband/django-taggit"; 45 license = licenses.bsd3; 46 maintainers = with maintainers; [ desiderius ]; 47 }; 48 - 49 }
··· 9 10 buildPythonPackage rec { 11 pname = "django-taggit"; 12 + version = "3.1.0"; 13 format = "setuptools"; 14 + 15 disabled = pythonOlder "3.6"; 16 17 src = fetchPypi { 18 inherit pname version; 19 + hash = "sha256-yPLk6uOHk5CJs9ddHYZJ4AiICXDAaM6dDoL4f9XilQg="; 20 }; 21 22 propagatedBuildInputs = [ ··· 43 meta = with lib; { 44 description = "Simple tagging for django"; 45 homepage = "https://github.com/jazzband/django-taggit"; 46 + changelog = "https://github.com/jazzband/django-taggit/blob/${version}/CHANGELOG.rst"; 47 license = licenses.bsd3; 48 maintainers = with maintainers; [ desiderius ]; 49 }; 50 }