mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
Merge pull request #804 from lovek323/googlecl
pythonPackages.googlecl: add expression
This commit is contained in:
commit
f13d2f58d3
@ -29,7 +29,8 @@ stdenv.mkDerivation rec {
|
||||
wrapPythonPrograms
|
||||
'';
|
||||
|
||||
doCheck = true;
|
||||
doCheck = (!stdenv.isDarwin);
|
||||
|
||||
checkPhase = ''
|
||||
${python}/bin/${python.executable} setup.py test
|
||||
'';
|
||||
|
@ -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";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user