Add pythonPackages.pyramid_chameleon and disable tests for zope_testrunner

gstqt5
Domen Kožar 2014-01-22 18:18:52 +01:00
parent 49dd0867a7
commit c1811d0304
1 changed files with 24 additions and 0 deletions

View File

@ -1724,6 +1724,27 @@ pythonPackages = modules // import ./python-packages-generated.nix {
};
pyramid_chameleon = buildPythonPackage rec {
name = "pyramid_chameleon-0.1";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/p/pyramid_chameleon/${name}.tar.gz";
md5 = "39b1327a9890f382200bbfde943833d7";
};
propagatedBuildInputs = [
chameleon
pyramid
zope_interface
setuptools
];
meta = with stdenv.lib; {
maintainers = [ maintainers.iElectric ];
};
};
pyramid_jinja2 = buildPythonPackage rec {
name = "pyramid_jinja2-1.9";
@ -7706,6 +7727,9 @@ pythonPackages = modules // import ./python-packages-generated.nix {
propagatedBuildInputs = [ zope_interface zope_exceptions zope_testing six ] ++ optional (!python.is_py3k or false) subunit;
# a test is failing
doCheck = false;
meta = {
description = "A flexible test runner with layer support";
homepage = http://pypi.python.org/pypi/zope.testrunner;