pythonPackages.django-jinja: init at 2.2.2
This commit is contained in:
parent
0b2fc117c1
commit
b80cb36cde
29
pkgs/development/python-modules/django-jinja2/default.nix
Normal file
29
pkgs/development/python-modules/django-jinja2/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ lib, buildPythonPackage, fetchPypi,
|
||||
django, jinja2, pytz, tox
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "django-jinja";
|
||||
name = "${pname}-${version}";
|
||||
version = "2.2.2";
|
||||
|
||||
meta = {
|
||||
description = "Simple and nonobstructive jinja2 integration with Django";
|
||||
homepage = https://github.com/niwinz/django-jinja;
|
||||
license = lib.licenses.bsd3;
|
||||
};
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "099b99iprkvlsndrjmw4v3i3i60i9gm1aq5r88z15r7vgmv6sigj";
|
||||
};
|
||||
|
||||
buildInputs = [ django pytz tox ];
|
||||
propagatedBuildInputs = [ django jinja2 ];
|
||||
|
||||
# python installed: The directory '/homeless-shelter/.cache/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.,appdirs==1.4.3,Django==1.11.1,django-jinja==2.2.2,Jinja2==2.9.6,MarkupSafe==1.0,packaging==16.8,pyparsing==2.2.0,pytz==2017.2,six==1.10.0
|
||||
doCheck = false;
|
||||
checkPhase = ''
|
||||
tox
|
||||
'';
|
||||
}
|
@ -8638,6 +8638,8 @@ in {
|
||||
|
||||
django-ipware = callPackage ../development/python-modules/django-ipware { };
|
||||
|
||||
django-jinja = callPackage ../development/python-modules/django-jinja2 { };
|
||||
|
||||
django_polymorphic = callPackage ../development/python-modules/django-polymorphic { };
|
||||
|
||||
django_tagging = callPackage ../development/python-modules/django_tagging { };
|
||||
|
Loading…
Reference in New Issue
Block a user