lol

Merge pull request #209404 from r-ryantm/auto-update/python310Packages.django_treebeard

python310Packages.django_treebeard: 4.5.1 -> 4.6.0

authored by

Fabian Affolter and committed by
GitHub
aefc89e2 7501659e

+23 -11
+23 -11
pkgs/development/python-modules/django_treebeard/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 + , django 3 4 , fetchPypi 4 - , pytest 5 - , django 5 + , pytest-django 6 + , pytestCheckHook 7 + , pythonOlder 6 8 }: 7 9 8 10 buildPythonPackage rec { 9 11 pname = "django-treebeard"; 10 - version = "4.5.1"; 12 + version = "4.6.0"; 13 + format = "setuptools"; 14 + 15 + disabled = pythonOlder "3.8"; 11 16 12 17 src = fetchPypi { 13 18 inherit pname version; 14 - sha256 = "80150017725239702054e5fa64dc66e383dc13ac262c8d47ee5a82cb005969da"; 19 + hash = "sha256-frHrcbJCFPLn3DvSFfDDrjL9Z2QXnNR3SveqtJE53qA="; 15 20 }; 16 21 17 - buildInputs = [ pytest ]; 18 - propagatedBuildInputs = [ django ]; 22 + propagatedBuildInputs = [ 23 + django 24 + ]; 19 25 20 - # tests fail "AppRegistryNotReady("Apps aren't loaded yet.")" 21 - doCheck = false; 26 + checkInputs = [ 27 + pytest-django 28 + pytestCheckHook 29 + ]; 30 + 31 + pythonImportsCheck = [ 32 + "treebeard" 33 + ]; 22 34 23 35 meta = with lib; { 24 - description = "Efficient tree implementations for Django 1.6+"; 36 + description = "Efficient tree implementations for Django"; 25 37 homepage = "https://tabo.pe/projects/django-treebeard/"; 26 - maintainers = with maintainers; [ desiderius ]; 38 + changelog = "https://github.com/django-treebeard/django-treebeard/blob/${version}/CHANGES.md"; 27 39 license = licenses.asl20; 40 + maintainers = with maintainers; [ desiderius ]; 28 41 }; 29 - 30 42 }