Merge pull request #309080 from anthonyroussel/fix-mypy-protobuf

python312Packages.mypy-protobuf: fix build
This commit is contained in:
Timo Kaufmann 2024-05-05 12:26:14 +02:00 committed by GitHub
commit ecd3515136
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,17 +1,22 @@
{ lib
, fetchPypi
, buildPythonPackage
, protobuf
, types-protobuf
, grpcio-tools
, pytestCheckHook
, pythonOlder
{
buildPythonPackage,
fetchPypi,
grpcio-tools,
lib,
mypy-protobuf,
protobuf,
pytestCheckHook,
pythonOlder,
pythonRelaxDepsHook,
setuptools,
testers,
types-protobuf,
}:
buildPythonPackage rec {
pname = "mypy-protobuf";
version = "3.6.0";
format = "pyproject";
pyproject = true;
disabled = pythonOlder "3.8";
@ -20,26 +25,35 @@ buildPythonPackage rec {
hash = "sha256-AvJC6zQJ9miJ8rGjqlg1bsTZCc3Q+TEVYi6ecDZuyjw=";
};
propagatedBuildInputs = [
nativeBuildInputs = [ pythonRelaxDepsHook ];
pythonRelaxDeps = [ "protobuf" ];
build-system = [ setuptools ];
dependencies = [
grpcio-tools
protobuf
types-protobuf
grpcio-tools
];
doCheck = false; # ModuleNotFoundError: No module named 'testproto'
nativeCheckInputs = [
pytestCheckHook
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"mypy_protobuf"
];
pythonImportsCheck = [ "mypy_protobuf" ];
meta = with lib; {
passthru.tests.version = testers.testVersion {
package = mypy-protobuf;
command = "${lib.getExe mypy-protobuf} --version";
};
meta = {
changelog = "https://github.com/nipunn1313/mypy-protobuf/blob/v${version}/CHANGELOG.md";
description = "Generate mypy stub files from protobuf specs";
homepage = "https://github.com/dropbox/mypy-protobuf";
license = licenses.asl20;
maintainers = with maintainers; [ lnl7 ];
homepage = "https://github.com/nipunn1313/mypy-protobuf";
license = lib.licenses.asl20;
mainProgram = "protoc-gen-mypy";
maintainers = with lib.maintainers; [ lnl7 ];
};
}