python3Packages.django-phonenumber-field: 8.0.0 -> 8.1.0 (#406878)

authored by dotlambda and committed by GitHub dd80d0b7 840a2158

+3 -6
+3 -6
pkgs/development/python-modules/django-phonenumber-field/default.nix
··· 9 9 phonenumbers, 10 10 phonenumberslite, 11 11 python, 12 - pythonOlder, 13 12 setuptools-scm, 14 13 }: 15 14 16 15 buildPythonPackage rec { 17 16 pname = "django-phonenumber-field"; 18 - version = "8.0.0"; 17 + version = "8.1.0"; 19 18 pyproject = true; 20 19 21 - disabled = pythonOlder "3.8"; 22 - 23 20 src = fetchFromGitHub { 24 21 owner = "stefanfoulis"; 25 22 repo = "django-phonenumber-field"; 26 23 tag = version; 27 - hash = "sha256-l+BAh7QYGN0AgDHICvlQnBYAcpEn8acu+JBmoo85kF0="; 24 + hash = "sha256-KRi2rUx88NYoQhRChmNABP8KalMbf4HhWC8Wwnc/xB4="; 28 25 }; 29 26 30 27 build-system = [ setuptools-scm ]; ··· 60 57 meta = with lib; { 61 58 description = "Django model and form field for normalised phone numbers using python-phonenumbers"; 62 59 homepage = "https://github.com/stefanfoulis/django-phonenumber-field/"; 63 - changelog = "https://github.com/stefanfoulis/django-phonenumber-field/releases/tag/${version}"; 60 + changelog = "https://github.com/stefanfoulis/django-phonenumber-field/releases/tag/${src.tag}"; 64 61 license = licenses.mit; 65 62 maintainers = with maintainers; [ sephi ]; 66 63 };