1{ stdenv, buildPythonPackage, fetchPypi
2, protobuf, pytest }:
3
4buildPythonPackage rec {
5 pname = "googleapis-common-protos";
6 version = "1.5.8";
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "d56ca712f67fff216d3be9eeeb8360ca59066d0365ba70b137b9e1801813747e";
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}