Unverified Commit 1d5d7440 authored by Leona Maroni's avatar Leona Maroni
Browse files

python3Packages.django-treenode: init at 0.23.2

required for paperless-ngx 2.19.0
parent 0a398507
Loading
Loading
Loading
Loading
+40 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  setuptools,
  django,
}:

buildPythonPackage rec {
  pname = "django-treenode";
  version = "0.23.2";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "fabiocaccamo";
    repo = "django-treenode";
    tag = version;
    hash = "sha256-9AG8ntuXHB3jUHRKFDh7OOT5c0Nt8uAZnf5dR7xC/Bc=";
  };

  build-system = [
    setuptools
  ];

  dependencies = [
    django
  ];

  pythonImportsCheck = [
    "treenode"
  ];

  meta = {
    description = "Deciduous_tree: probably the best abstract model/admin for your tree based stuff";
    homepage = "https://github.com/fabiocaccamo/django-treenode";
    changelog = "https://github.com/fabiocaccamo/django-treenode/blob/${src.rev}/CHANGELOG.md";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ leona ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -4156,6 +4156,8 @@ self: super: with self; {
  django-treebeard = callPackage ../development/python-modules/django-treebeard { };
  django-treenode = callPackage ../development/python-modules/django-treenode { };
  django-two-factor-auth = callPackage ../development/python-modules/django-two-factor-auth { };
  django-types = callPackage ../development/python-modules/django-types { };