Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, protobuf 5}: 6 7buildPythonPackage rec { 8 pname = "proto-plus"; 9 version = "1.10.1"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "0n8ia51jg2dkab2sf0qnh39bssqhz65ybcqr78f3zzf7ja923lkr"; 14 }; 15 16 propagatedBuildInputs = [ protobuf ]; 17 18 meta = with stdenv.lib; { 19 description = "Beautiful, idiomatic protocol buffers in Python"; 20 homepage = "https://github.com/googleapis/proto-plus-python"; 21 license = licenses.asl20; 22 maintainers = [ maintainers.ruuda ]; 23 }; 24}