Unverified Commit ecd35151 authored by Timo Kaufmann's avatar Timo Kaufmann Committed by GitHub
Browse files

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

python312Packages.mypy-protobuf: fix build
parents 0c4b0ca8 7848c2de
Loading
Loading
Loading
Loading
+35 −21
Original line number Diff line number Diff line
{ 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" ];

  passthru.tests.version = testers.testVersion {
    package = mypy-protobuf;
    command = "${lib.getExe mypy-protobuf} --version";
  };

  meta = with lib; {
  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 ];
  };
}