pythonPackages.proto-plus: init at 1.10.1

I am adding this package because it is a dependency of
google_cloud_dataproc.
This commit is contained in:
Ruud van Asseldonk 2020-10-10 11:35:18 +02:00 committed by Jon
parent ef32b7fa5d
commit e9874b2ce5
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, protobuf
}:
buildPythonPackage rec {
pname = "proto-plus";
version = "1.10.1";
src = fetchPypi {
inherit pname version;
sha256 = "0n8ia51jg2dkab2sf0qnh39bssqhz65ybcqr78f3zzf7ja923lkr";
};
propagatedBuildInputs = [ protobuf ];
meta = with stdenv.lib; {
description = "Beautiful, idiomatic protocol buffers in Python";
homepage = "https://github.com/googleapis/proto-plus-python";
license = licenses.asl20;
maintainers = [ maintainers.ruuda ];
};
}

View File

@ -4665,6 +4665,8 @@ in {
protego = callPackage ../development/python-modules/protego { };
proto-plus = callPackage ../development/python-modules/proto-plus { };
protobuf = callPackage ../development/python-modules/protobuf {
disabled = isPyPy;
doCheck =