2017-12-20 22:44:21 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi
|
2018-04-07 23:04:44 +01:00
|
|
|
, protobuf, pytest }:
|
2017-12-20 22:44:21 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "googleapis-common-protos";
|
2019-02-14 07:37:17 +00:00
|
|
|
version = "1.5.8";
|
2017-12-20 22:44:21 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-02-14 07:37:17 +00:00
|
|
|
sha256 = "d56ca712f67fff216d3be9eeeb8360ca59066d0365ba70b137b9e1801813747e";
|
2017-12-20 22:44:21 +00:00
|
|
|
};
|
|
|
|
|
2018-04-07 23:04:44 +01:00
|
|
|
propagatedBuildInputs = [ protobuf ];
|
2017-12-20 22:44:21 +00:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|