34 lines
745 B
Nix
34 lines
745 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, isPy3k
|
|
, protobuf
|
|
, googleapis-common-protos
|
|
, pytestCheckHook
|
|
, pytz
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "proto-plus";
|
|
version = "1.18.1";
|
|
disabled = !isPy3k;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "cfc45474c7eda0fe3c4b9eca2542124f2a0ff5543242bec61e8d08bce0f5bd48";
|
|
};
|
|
|
|
propagatedBuildInputs = [ protobuf ];
|
|
|
|
checkInputs = [ 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 ];
|
|
};
|
|
}
|