Files
nixpkgs/pkgs/development/python-modules/django-modelsearch/default.nix
T
2025-11-14 23:21:55 +00:00

55 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
setuptools,
# dependencies
django,
django-tasks,
# tests
pytest-django,
pytestCheckHook,
django-modelcluster,
}:
buildPythonPackage rec {
pname = "modelsearch";
version = "1.1.1";
pyproject = true;
src = fetchFromGitHub {
owner = "wagtail";
repo = "django-modelsearch";
tag = "v${version}";
hash = "sha256-tjwVepI9mdrMbTtxfe6yNUrSHWKndGxv2lJ8AfyNcr0=";
};
build-system = [
setuptools
];
dependencies = [
django
django-modelcluster
django-tasks
];
pythonImportsCheck = [ "modelsearch" ];
# django.core.exceptions.ImproperlyConfigured: Requested setting INSTALLED_APPS, but settings are not configured.
# You must either define the environment variable DJANGO_SETTINGS_MODULE or call settings.configure() before accessing settings.
doCheck = false;
meta = {
description = "Index Django Models with Elasticsearch or OpenSearch and query them with the ORM";
homepage = "https://github.com/wagtail/django-modelsearch";
changelog = "https://github.com/wagtail/django-modelsearch/releases/tag/${src.tag}";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ GaetanLepage ];
};
}