nixpkgs/pkgs/development/python-modules/googleapis_common_protos/default.nix
2019-02-17 14:40:23 +01:00

25 lines
628 B
Nix

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