2017-12-20 23:44:21 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi
|
2019-10-15 23:58:19 +02:00
|
|
|
, protobuf, pytest, setuptools }:
|
2017-12-20 23:44:21 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "googleapis-common-protos";
|
2020-01-15 10:24:51 +01:00
|
|
|
version = "1.51.0";
|
2017-12-20 23:44:21 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-01-15 10:24:51 +01:00
|
|
|
sha256 = "0vi2kr0daivx2q1692lp3y61bfnvdw471xsfwi8924br89q92g01";
|
2017-12-20 23:44:21 +01:00
|
|
|
};
|
|
|
|
|
2019-10-15 23:58:19 +02:00
|
|
|
propagatedBuildInputs = [ protobuf setuptools ];
|
2017-12-20 23:44:21 +01: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;
|
2020-02-26 15:20:08 +01:00
|
|
|
maintainers = with maintainers; [ ];
|
2017-12-20 23:44:21 +01:00
|
|
|
};
|
|
|
|
}
|