1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

googleapis_common_protos: init at version 1.5.3

This commit is contained in:
Klaas van Schelven 2017-12-20 23:44:21 +01:00
parent 867b0fddb0
commit 9cf561a90e
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ stdenv, buildPythonPackage, fetchPypi
, protobuf, pytest }:
buildPythonPackage rec {
pname = "googleapis-common-protos";
version = "1.5.3";
src = fetchPypi {
inherit pname version;
sha256 = "1whfjl44gy15ha6palpwa2m0xi36dsvpaz8vw0cvb2k2lbdfsxf0";
};
propagatedBuildInputs = [ protobuf ];
checkInputs = [ pytest ];
doCheck = false; # there are no tests
meta = with stdenv.lib; {
description = "Common protobufs used in Google APIs";
homepage = "https://github.com/googleapis/googleapis";
license = licenses.asl20;
maintainers = with maintainers; [ vanschelven ];
};
}

View file

@ -9045,6 +9045,8 @@ in {
propagatedBuildInputs = with self; [ oauth2client gdata simplejson httplib2 keyring six rsa ];
};
googleapis_common_protos = callPackage ../development/python-modules/googleapis_common_protos { };
google_api_python_client = buildPythonPackage rec {
name = "google-api-python-client-${version}";
version = "1.5.1";