6e94772a8f
https://github.com/django-treebeard/django-treebeard/blob/4.8.0/CHANGES.md This commit was automatically generated using update-python-libraries.
41 lines
871 B
Nix
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;
|
|
};
|
|
})
|