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