python311Packages.django-statici18n: 2.3.1 -> 2.4.0

+19 -7
+19 -7
pkgs/development/python-modules/django-statici18n/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 + 5 + # build-system 6 + , setuptools 7 + 8 + # dependencies 4 9 , django 5 10 , django-appconf 11 + 12 + # tests 6 13 , pytest-django 7 14 , pytestCheckHook 8 15 }: 9 16 10 17 buildPythonPackage rec { 11 18 pname = "django-statici18n"; 12 - version = "2.3.1"; 13 - format = "setuptools"; 19 + version = "2.4.0"; 20 + pyproject = true; 14 21 15 22 src = fetchFromGitHub { 16 23 owner = "zyegfryed"; 17 - repo = pname; 18 - rev = "refs/tags/v${version}"; 19 - hash = "sha256-2fFJJNdF0jspS7djDL8sToPTetzNR6pfNp5ohCNa30I="; 24 + repo = "django-statici18n"; 25 + # https://github.com/zyegfryed/django-statici18n/issues/59 26 + rev = "9b83a8f0f2e625dd5f56d53cfe4e07aca9479ab6"; 27 + hash = "sha256-KrIlWmN7um9ad2avfANOza579bjYkxTo9F0UFpvLu3A="; 20 28 }; 21 29 22 - propagatedBuildInputs = [ 30 + build-system = [ 31 + setuptools 32 + ]; 33 + 34 + dependencies = [ 23 35 django 24 36 django-appconf 25 37 ]; ··· 28 40 "statici18n" 29 41 ]; 30 42 31 - DJANGO_SETTINGS_MODULE = "tests.test_project.project.settings"; 43 + env.DJANGO_SETTINGS_MODULE = "tests.test_project.project.settings"; 32 44 33 45 nativeCheckInputs = [ 34 46 pytest-django