Merge pull request #804 from lovek323/googlecl

pythonPackages.googlecl: add expression
This commit is contained in:
Domen Kožar 2013-08-20 14:33:58 -07:00
commit f13d2f58d3
2 changed files with 24 additions and 1 deletions

View File

@ -29,7 +29,8 @@ stdenv.mkDerivation rec {
wrapPythonPrograms
'';
doCheck = true;
doCheck = (!stdenv.isDarwin);
checkPhase = ''
${python}/bin/${python.executable} setup.py test
'';

View File

@ -1256,6 +1256,28 @@ pythonPackages = modules // import ./python-packages-generated.nix {
propagatedBuildInputs = [ sphinx ];
};
googlecl = buildPythonPackage rec {
version = "0.9.14";
name = "googlecl-${version}";
src = fetchurl {
url = "https://googlecl.googlecode.com/files/${name}.tar.gz";
sha256 = "0nnf7xkr780wivr5xnchfcrahlzy9bi2dxcs1w1bh1014jql0iha";
};
meta = with stdenv.lib; {
description = "Brings Google services to the command line.";
homepage = "https://code.google.com/p/googlecl/";
license = licenses.asl20;
maintainers = with maintainers; [ lovek323 ];
platforms = platforms.unix;
};
propagatedBuildInputs = [ gdata ];
};
logilab_astng = buildPythonPackage rec {
name = "logilab-astng-0.24.1";