1{ stdenv, buildPythonPackage, fetchPypi
2, protobuf, pytest }:
3
4buildPythonPackage rec {
5 pname = "googleapis-common-protos";
6 version = "1.5.3";
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "1whfjl44gy15ha6palpwa2m0xi36dsvpaz8vw0cvb2k2lbdfsxf0";
11 };
12
13 propagatedBuildInputs = [ protobuf ];
14 checkInputs = [ pytest ];
15
16 doCheck = false; # there are no tests
17
18 meta = with stdenv.lib; {
19 description = "Common protobufs used in Google APIs";
20 homepage = "https://github.com/googleapis/googleapis";
21 license = licenses.asl20;
22 maintainers = with maintainers; [ vanschelven ];
23 };
24}