python313Packages.django-tree-queries: init at 0.19

New dependency for strawberry-django.
This commit is contained in:
Martin Weinelt
2025-01-27 10:57:32 +01:00
parent f39fda0800
commit 3da4f090d0
2 changed files with 55 additions and 0 deletions
@@ -0,0 +1,53 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
django,
pytest-django,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "django-tree-queries";
version = "0.19";
pyproject = true;
src = fetchFromGitHub {
owner = "feincms";
repo = "django-tree-queries";
tag = version;
hash = "sha256-0RSmwgyXaLCp2GcUZ0l7zkyofd5qemd/er+7KfGsoGM=";
};
build-system = [
hatchling
];
nativeCheckInputs = [
django
pytest-django
pytestCheckHook
];
preCheck = ''
pushd tests
export DJANGO_SETTINGS_MODULE=testapp.settings
'';
postCheck = ''
popd
'';
pythonImportsCheck = [
"tree_queries"
];
meta = {
description = "Adjacency-list trees for Django using recursive common table expressions. Supports PostgreSQL, sqlite, MySQL and MariaDB";
homepage = "https://github.com/feincms/django-tree-queries";
changelog = "https://github.com/feincms/django-tree-queries/blob/${src.tag}/CHANGELOG.rst";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ ];
};
}
+2
View File
@@ -3705,6 +3705,8 @@ self: super: with self; {
django-tinymce = callPackage ../development/python-modules/django-tinymce { };
django-tree-queries = callPackage ../development/python-modules/django-tree-queries { };
django-treebeard = callPackage ../development/python-modules/django-treebeard { };
django-two-factor-auth = callPackage ../development/python-modules/django-two-factor-auth { };