python: give coverage to coilmq and oauth2 - thx shea

This commit is contained in:
Florian Friesdorf 2012-12-06 08:24:38 +01:00
parent 83c550c267
commit ea58608726

View File

@ -407,9 +407,11 @@ let pythonPackages = python.modules // rec {
propagatedBuildInputs = [ stompclient distribute ]; propagatedBuildInputs = [ stompclient distribute ];
#buildInputs = [ coverage ]; buildInputs = [ coverage sqlalchemy ];
# needs coverage
doCheck = false; # ValueError: Could not parse auth file:
# /tmp/nix-build-.../CoilMQ-0.6.1/coilmq/tests/resources/auth.ini
#doCheck = false;
meta = { meta = {
description = "Simple, lightweight, and easily extensible STOMP message broker"; description = "Simple, lightweight, and easily extensible STOMP message broker";
@ -1457,7 +1459,7 @@ let pythonPackages = python.modules // rec {
description = "A unittest-based testing framework for python that makes writing and running tests easier"; description = "A unittest-based testing framework for python that makes writing and running tests easier";
}; };
buildInputs = [ pythonPackages.coverage ]; buildInputs = [ coverage ];
}; };
notify = pkgs.stdenv.mkDerivation (rec { notify = pkgs.stdenv.mkDerivation (rec {
@ -1537,9 +1539,10 @@ let pythonPackages = python.modules // rec {
propagatedBuildInputs = [ httplib2 ]; propagatedBuildInputs = [ httplib2 ];
#buildInputs = [ mock coverage ]; buildInputs = [ mock coverage ];
# needs coverage
doCheck = false; # ServerNotFoundError: Unable to find the server at oauth-sandbox.sevengoslings.net
#doCheck = false;
meta = { meta = {
homepage = "https://github.com/simplegeo/python-oauth2"; homepage = "https://github.com/simplegeo/python-oauth2";