nixpkgs/pkgs/development/python-modules/googleapis_common_protos/default.nix
2018-04-08 11:36:07 +02:00

25 lines
616 B
Nix

{ stdenv, buildPythonPackage, fetchPypi
, protobuf, pytest }:
buildPythonPackage rec {
pname = "googleapis-common-protos";
version = "1.5.3";
src = fetchPypi {
inherit pname version;
sha256 = "1whfjl44gy15ha6palpwa2m0xi36dsvpaz8vw0cvb2k2lbdfsxf0";
};
propagatedBuildInputs = [ protobuf ];
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 ];
};
}