Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv, buildPythonPackage, fetchPypi 2, protobuf, pytest }: 3 4buildPythonPackage rec { 5 pname = "googleapis-common-protos"; 6 version = "1.5.10"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "d564872083af40bbcc7091340f17db778a316525c7c76497d58d11b98ca2aa74"; 11 }; 12 13 propagatedBuildInputs = [ protobuf ]; 14 checkInputs = [ pytest ]; 15 16 doCheck = false; # there are no tests 17 18 meta = with stdenv.lib; { 19 description = "Common protobufs used in Google APIs"; 20 homepage = "https://github.com/googleapis/googleapis"; 21 license = licenses.asl20; 22 maintainers = with maintainers; [ vanschelven ]; 23 }; 24}