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