mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
25 lines
616 B
Nix
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 ];
|
|
};
|
|
}
|