1{ stdenv, buildPythonPackage, fetchPypi
2, protobuf, pytest, setuptools }:
3
4buildPythonPackage rec {
5 pname = "googleapis-common-protos";
6 version = "1.6.0";
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "e61b8ed5e36b976b487c6e7b15f31bb10c7a0ca7bd5c0e837f4afab64b53a0c6";
11 };
12
13 propagatedBuildInputs = [ protobuf setuptools ];
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}