python311Packages.betterproto: refactor
This commit is contained in:
@@ -13,6 +13,7 @@
|
||||
, pytestCheckHook
|
||||
, pytest-asyncio
|
||||
, pytest-mock
|
||||
, typing-extensions
|
||||
, tomlkit
|
||||
, grpcio-tools
|
||||
}:
|
||||
@@ -20,21 +21,25 @@
|
||||
buildPythonPackage rec {
|
||||
pname = "betterproto";
|
||||
version = "2.0.0b6";
|
||||
format = "pyproject";
|
||||
disabled = pythonOlder "3.7";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.9";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "danielgtaylor";
|
||||
repo = "python-betterproto";
|
||||
rev = "v.${version}";
|
||||
rev = "refs/tags/v.${version}";
|
||||
hash = "sha256-ZuVq4WERXsRFUPNNTNp/eisWX1MyI7UtwqEI8X93wYI=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ poetry-core ];
|
||||
nativeBuildInputs = [
|
||||
poetry-core
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
grpclib
|
||||
python-dateutil
|
||||
typing-extensions
|
||||
];
|
||||
|
||||
passthru.optional-dependencies.compiler = [
|
||||
@@ -43,16 +48,18 @@ buildPythonPackage rec {
|
||||
isort
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "betterproto" ];
|
||||
|
||||
nativeCheckInputs = [
|
||||
grpcio-tools
|
||||
pydantic
|
||||
pytestCheckHook
|
||||
pytest-asyncio
|
||||
pytest-mock
|
||||
pytestCheckHook
|
||||
tomlkit
|
||||
grpcio-tools
|
||||
] ++ passthru.optional-dependencies.compiler;
|
||||
] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies);
|
||||
|
||||
pythonImportsCheck = [
|
||||
"betterproto"
|
||||
];
|
||||
|
||||
# The tests require the generation of code before execution. This requires
|
||||
# the protoc-gen-python_betterproto script from the package to be on PATH.
|
||||
@@ -63,13 +70,14 @@ buildPythonPackage rec {
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Clean, modern, Python 3.6+ code generator & library for Protobuf 3 and async gRPC";
|
||||
description = "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";
|
||||
changelog = "https://github.com/danielgtaylor/python-betterproto/blob/v.${version}/CHANGELOG.md";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ nikstur ];
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user