pythonPackage.django-treebeard: init at 3.0

django-treebeard is a library that implements efficient tree
implementations for the Django Web Framework 1.6+
This commit is contained in:
desiderius 2015-09-08 09:32:35 +02:00
parent 709ddcb475
commit aee8b10da2

View file

@ -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}";