Unverified Commit daf7a937 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

python313Packages.django-localflavor: 4.0 -> 5.0 (#409784)

* python313Packages.django-localflavor: 4.0 -> 5.0

https://github.com/django/django-localflavor/blob/5.0/docs/changelog.rst

* pretix: relax django-localflavor constraint
parents 976d1dc6 b8c413e9
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -82,6 +82,7 @@ python.pkgs.buildPythonApplication rec {
    "beautifulsoup4"
    "celery"
    "django-bootstrap3"
    "django-localflavor"
    "django-phonenumber-field"
    "dnspython"
    "drf_ujson2"
+3 −2
Original line number Diff line number Diff line
@@ -17,14 +17,14 @@

buildPythonPackage rec {
  pname = "django-localflavor";
  version = "4.0";
  version = "5.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "django";
    repo = "django-localflavor";
    tag = version;
    hash = "sha256-UWp3ei1VlEsEfjbJIE+MpffSzYF4X1HEQw+z+5kZoP0=";
    hash = "sha256-eYhkWfxoZlnxhCIaqBhoEt0+SbkZKkUNUAy4p3tYf4A=";
  };

  build-system = [ setuptools ];
@@ -53,6 +53,7 @@ buildPythonPackage rec {
  env.DJANGO_SETTINGS_MODULE = "tests.settings";

  meta = with lib; {
    changelog = "https://github.com/django/django-localflavor/blob/${src.tag}/docs/changelog.rst";
    description = "Country-specific Django helpers";
    homepage = "https://github.com/django/django-localflavor";
    license = licenses.bsd3;