python311Packages.django-filter: 23.5 -> 24.1

https://github.com/carltongibson/django-filter/blob/v24.1/CHANGES.rst
This commit is contained in:
Martin Weinelt 2024-03-24 22:59:13 +01:00
parent 73072f314a
commit db6c2bcf1a
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759
1 changed files with 7 additions and 6 deletions

View File

@ -6,22 +6,22 @@
, djangorestframework
, pytestCheckHook
, pytest-django
, python
, pytz
}:
buildPythonPackage rec {
pname = "django-filter";
version = "23.5";
format = "pyproject";
version = "24.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-Z1g6pDuR/oxJ90qDLZX02EQr5ij9TG1l6fgR9RU6Tlw=";
hash = "sha256-ZctDzicgd+Wsaq4QVNdsEhzWtVLilqgqE5Iek3G6+ME=";
};
nativeBuildInputs = [ flit-core ];
build-system = [ flit-core ];
propagatedBuildInputs = [ django ];
dependencies = [ django ];
pythonImportsCheck = [
"django_filters"
@ -31,6 +31,7 @@ buildPythonPackage rec {
djangorestframework
pytestCheckHook
pytest-django
pytz
];
env.DJANGO_SETTINGS_MODULE = "tests.settings";