Files
nixpkgs/pkgs/development/python-modules/django-treebeard/default.nix
T
Martin Weinelt 6e94772a8f python3Packages.django-treebeard: 4.7.1 -> 4.8.0
https://github.com/django-treebeard/django-treebeard/blob/4.8.0/CHANGES.md

This commit was automatically generated using update-python-libraries.
2026-02-01 16:43:11 +01:00

41 lines
871 B
Nix

{
lib,
buildPythonPackage,
django,
fetchFromGitHub,
pytest-django,
pytestCheckHook,
setuptools,
}:
buildPythonPackage (finalAttrs: {
pname = "django-treebeard";
version = "4.8.0";
pyproject = true;
src = fetchFromGitHub {
owner = "django-treebeard";
repo = "django-treebeard";
tag = finalAttrs.version;
hash = "sha256-DrjI0HlrJhNqrYul3SO0xkkFwjWRn94OgvTA/Z3wv84=";
};
build-system = [ setuptools ];
dependencies = [ django ];
nativeCheckInputs = [
pytest-django
pytestCheckHook
];
pythonImportsCheck = [ "treebeard" ];
meta = {
description = "Efficient tree implementations for Django";
homepage = "https://tabo.pe/projects/django-treebeard/";
changelog = "https://github.com/django-treebeard/django-treebeard/blob/${finalAttrs.src.tag}/CHANGES.md";
license = lib.licenses.asl20;
};
})