From aee8b10da2b0eb3a30d92ed86ab5d625371dae36 Mon Sep 17 00:00:00 2001 From: desiderius Date: Tue, 8 Sep 2015 09:32:35 +0200 Subject: [PATCH] pythonPackage.django-treebeard: init at 3.0 django-treebeard is a library that implements efficient tree implementations for the Django Web Framework 1.6+ --- pkgs/top-level/python-packages.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 59b2b5bab184..90183a7438b3 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -5500,6 +5500,24 @@ let }; }; + django_treebeard = buildPythonPackage rec { + name = "django-treebeard-${version}"; + version = "3.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/d/django-treebeard/${name}.tar.gz"; + sha256 = "10p9rb2m1zccszg7590fjd0in6rabzsh86f5m7qm369mapc3b6dc"; + }; + + propagatedBuildInputs = with self; [ django pytest ]; + + meta = { + description = "Efficient tree implementations for Django 1.6+"; + homepage = https://tabo.pe/projects/django-treebeard/; + maintainers = with maintainers; [ desiderius ]; + license = licenses.asl20; + }; + }; django_pipeline = buildPythonPackage rec { name = "django-pipeline-${version}";