python3Packages.django-phonenumber-field: 8.0.0 -> 8.1.0

This commit is contained in:
R. Ryantm 2025-05-13 21:55:46 +00:00 committed by Robert Schütz
parent 6983909b46
commit 05acf58889

View File

@ -9,22 +9,19 @@
phonenumbers,
phonenumberslite,
python,
pythonOlder,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "django-phonenumber-field";
version = "8.0.0";
version = "8.1.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "stefanfoulis";
repo = "django-phonenumber-field";
tag = version;
hash = "sha256-l+BAh7QYGN0AgDHICvlQnBYAcpEn8acu+JBmoo85kF0=";
hash = "sha256-KRi2rUx88NYoQhRChmNABP8KalMbf4HhWC8Wwnc/xB4=";
};
build-system = [ setuptools-scm ];
@ -60,7 +57,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Django model and form field for normalised phone numbers using python-phonenumbers";
homepage = "https://github.com/stefanfoulis/django-phonenumber-field/";
changelog = "https://github.com/stefanfoulis/django-phonenumber-field/releases/tag/${version}";
changelog = "https://github.com/stefanfoulis/django-phonenumber-field/releases/tag/${src.tag}";
license = licenses.mit;
maintainers = with maintainers; [ sephi ];
};