2022-08-24 23:51:11 +02:00
|
|
|
{ buildPythonPackage
|
|
|
|
, fetchFromGitHub
|
|
|
|
, lib
|
|
|
|
, pythonOlder
|
|
|
|
, poetry-core
|
|
|
|
, grpclib
|
|
|
|
, python-dateutil
|
|
|
|
, black
|
|
|
|
, jinja2
|
|
|
|
, isort
|
|
|
|
, python
|
|
|
|
, pytestCheckHook
|
|
|
|
, pytest-asyncio
|
|
|
|
, pytest-mock
|
|
|
|
, tomlkit
|
|
|
|
, grpcio-tools
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "betterproto";
|
|
|
|
version = "2.0.0b5";
|
|
|
|
format = "pyproject";
|
2022-11-28 02:26:00 +01:00
|
|
|
disabled = pythonOlder "3.7";
|
2022-08-24 23:51:11 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "danielgtaylor";
|
|
|
|
repo = "python-betterproto";
|
|
|
|
rev = "v${version}";
|
2023-03-03 01:48:06 +01:00
|
|
|
hash = "sha256-XyXdpo3Yo4aO1favMWC7i9utz4fNDbKbsnYXJW0b7Gc=";
|
2022-08-24 23:51:11 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ poetry-core ];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
grpclib
|
|
|
|
python-dateutil
|
|
|
|
];
|
|
|
|
|
|
|
|
passthru.optional-dependencies.compiler = [
|
|
|
|
black
|
|
|
|
jinja2
|
|
|
|
isort
|
|
|
|
];
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "betterproto" ];
|
|
|
|
|
2023-01-21 13:00:00 +01:00
|
|
|
nativeCheckInputs = [
|
2022-08-24 23:51:11 +02:00
|
|
|
pytestCheckHook
|
|
|
|
pytest-asyncio
|
|
|
|
pytest-mock
|
|
|
|
tomlkit
|
|
|
|
grpcio-tools
|
|
|
|
] ++ passthru.optional-dependencies.compiler;
|
|
|
|
|
|
|
|
# The tests require the generation of code before execution. This requires
|
|
|
|
# the protoc-gen-python_betterproto script from the packge to be on PATH.
|
|
|
|
preCheck = ''
|
|
|
|
export PATH=$PATH:$out/bin
|
|
|
|
${python.interpreter} -m tests.generate
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Clean, modern, Python 3.6+ code generator & library for Protobuf 3 and async gRPC";
|
|
|
|
longDescription = ''
|
|
|
|
This project aims to provide an improved experience when using Protobuf /
|
|
|
|
gRPC in a modern Python environment by making use of modern language
|
|
|
|
features and generating readable, understandable, idiomatic Python code.
|
|
|
|
'';
|
|
|
|
homepage = "https://github.com/danielgtaylor/python-betterproto";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ nikstur ];
|
|
|
|
};
|
|
|
|
}
|