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