Unverified Commit dd80d0b7 authored by dotlambda's avatar dotlambda Committed by GitHub
Browse files

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

parents 840a2158 05acf588
Loading
Loading
Loading
Loading
+3 −6
Original line number Diff line number Diff line
@@ -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 ];
  };