nixpkgs/pkgs/development/python-modules/googleapis_common_protos/default.nix

25 lines
622 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi
2018-03-24 18:36:06 +00:00
, protobuf3_5, pytest }:
buildPythonPackage rec {
pname = "googleapis-common-protos";
version = "1.5.3";
src = fetchPypi {
inherit pname version;
sha256 = "1whfjl44gy15ha6palpwa2m0xi36dsvpaz8vw0cvb2k2lbdfsxf0";
};
2018-03-24 18:36:06 +00:00
propagatedBuildInputs = [ protobuf3_5 ];
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 ];
};
}