a0cb138ada
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
33 lines
738 B
Nix
33 lines
738 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, isPy3k
|
|
, protobuf
|
|
, googleapis-common-protos
|
|
, pytestCheckHook
|
|
, pytz
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "proto-plus";
|
|
version = "1.22.2";
|
|
disabled = !isPy3k;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-DozaPVpjTZiVt1xXPJNSwWSGy3XesOB4tf2jTbQkMWU=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ protobuf ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook pytz googleapis-common-protos ];
|
|
|
|
pythonImportsCheck = [ "proto" ];
|
|
|
|
meta = with lib; {
|
|
description = "Beautiful, idiomatic protocol buffers in Python";
|
|
homepage = "https://github.com/googleapis/proto-plus-python";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ ruuda SuperSandro2000 ];
|
|
};
|
|
}
|