Merge pull request #36731 from etu/pyjade-fixes

pyjade: move to own file and fix homepage
This commit is contained in:
Frederik Rietdijk 2018-03-10 12:06:11 +01:00 committed by GitHub
commit 82f0b244bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 30 additions and 26 deletions

@ -0,0 +1,29 @@
{ stdenv, buildPythonPackage, fetchPypi, pyramid_mako, nose, django, jinja2
, tornado, pyramid, Mako, six }:
buildPythonPackage rec {
pname = "pyjade";
version = "4.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "1mycn5cc9cp4fb0i2vzgkkk6d0glnkbilggwb4i99i09vr0vg5cd";
};
buildInputs = [ pyramid_mako nose django jinja2 tornado pyramid Mako ];
propagatedBuildInputs = [ six ];
postPatch = ''
sed -i 's/1.4.99/1.99/' setup.py
'';
checkPhase = ''
nosetests pyjade
'';
# No tests distributed. https://github.com/syrusakbary/pyjade/issues/262
doCheck = false;
meta = with stdenv.lib; {
description = "Jade syntax template adapter for Django, Jinja2, Mako and Tornado templates";
homepage = "https://github.com/syrusakbary/pyjade";
license = licenses.mit;
maintainers = with maintainers; [ nand0p ];
};
}

@ -3035,32 +3035,7 @@ in {
pydub = callPackage ../development/python-modules/pydub {};
pyjade = buildPythonPackage rec {
name = "${pname}-${version}";
pname = "pyjade";
version = "4.0.0";
src = pkgs.fetchurl {
url = "mirror://pypi/p/${pname}/${name}.tar.gz";
sha256 = "1mycn5cc9cp4fb0i2vzgkkk6d0glnkbilggwb4i99i09vr0vg5cd";
};
buildInputs = with self; [ pyramid_mako nose django jinja2 tornado pyramid Mako ];
propagatedBuildInputs = with self; [ six ];
patchPhase = ''
sed -i 's/1.4.99/1.99/' setup.py
'';
checkPhase = ''
nosetests pyjade
'';
# No tests distributed. https://github.com/syrusakbary/pyjade/issues/262
doCheck = false;
meta = {
description = "Jade syntax template adapter for Django, Jinja2, Mako and Tornado templates";
homepage = "http://github.com/syrusakbary/pyjade";
license = licenses.mit;
maintainers = with maintainers; [ nand0p ];
platforms = platforms.all;
};
};
pyjade = callPackage ../development/python-modules/pyjade {};
PyLD = callPackage ../development/python-modules/PyLD { };