python312Packages.django-filter: 23.5 -> 24.2

https://github.com/carltongibson/django-filter/blob/v24.2/CHANGES.rst
This commit is contained in:
Martin Weinelt 2024-04-05 10:51:55 +02:00
parent 3ca2825e42
commit f8302ce759
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759
1 changed files with 6 additions and 7 deletions

View File

@ -6,22 +6,21 @@
, djangorestframework
, pytestCheckHook
, pytest-django
, python
}:
buildPythonPackage rec {
pname = "django-filter";
version = "23.5";
format = "pyproject";
version = "24.2";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-Z1g6pDuR/oxJ90qDLZX02EQr5ij9TG1l6fgR9RU6Tlw=";
hash = "sha256-SOX8HaPM1soNX5u1UJc1GM6Xek7d6dKooVSn9PC5+W4=";
};
nativeBuildInputs = [ flit-core ];
build-system = [ flit-core ];
propagatedBuildInputs = [ django ];
dependencies = [ django ];
pythonImportsCheck = [
"django_filters"
@ -38,7 +37,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Reusable Django application for allowing users to filter querysets dynamically";
homepage = "https://github.com/carltongibson/django-filter";
changelog = "https://github.com/carltongibson/django-filter/blob/v${version}/CHANGES.rst";
changelog = "https://github.com/carltongibson/django-filter/blob/${version}/CHANGES.rst";
license = licenses.bsd3;
maintainers = with maintainers; [ mmai ];
};