3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages.googlecl: add expression

This commit is contained in:
Jason "Don" O'Conal 2013-08-03 10:42:11 +10:00
parent 4fb87e91ff
commit 32a3516b2c
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

@ -1148,6 +1148,28 @@ pythonPackages = modules // rec {
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";