Commit fa311c3b authored by Sigmanificient's avatar Sigmanificient
Browse files

python3Packages.mypy-protobuf_3_6: init at 3.6.0

parent cc504335
Loading
Loading
Loading
Loading
+51 −0
Original line number Diff line number Diff line
{
  buildPythonPackage,
  fetchFromGitHub,
  grpcio-tools,
  lib,
  protobuf,
  pytestCheckHook,
  setuptools,
  types-protobuf,
  versionCheckHook,
}:

buildPythonPackage (finalAttrs: {
  pname = "mypy-protobuf";
  version = "3.6.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "nipunn1313";
    repo = "mypy-protobuf";
    tag = "v${finalAttrs.version}";
    hash = "sha256-YBm/qfmas0kPmzhlgAwCdT8nsnC45fj2bhK3cXpvANo=";
  };

  pythonRelaxDeps = [ "protobuf" ];

  build-system = [ setuptools ];

  dependencies = [
    grpcio-tools
    protobuf
    types-protobuf
  ];

  doCheck = false; # ModuleNotFoundError: No module named 'testproto'

  nativeCheckInputs = [ pytestCheckHook ];

  pythonImportsCheck = [ "mypy_protobuf" ];

  nativeInstallCheckInputs = [ versionCheckHook ];

  meta = {
    changelog = "https://github.com/nipunn1313/mypy-protobuf/blob/${finalAttrs.src.tag}/CHANGELOG.md";
    description = "Generate mypy stub files from protobuf specs";
    homepage = "https://github.com/nipunn1313/mypy-protobuf";
    license = lib.licenses.asl20;
    mainProgram = "protoc-gen-mypy";
    maintainers = with lib.maintainers; [ sigmanificient ];
  };
})
+2 −0
Original line number Diff line number Diff line
@@ -10721,6 +10721,8 @@ self: super: with self; {
  mypy-protobuf = callPackage ../development/python-modules/mypy-protobuf { };
  mypy-protobuf_3_6 = callPackage ../development/python-modules/mypy-protobuf_3_6 { };
  mypyllant = callPackage ../development/python-modules/mypyllant { };
  mysql-connector = callPackage ../development/python-modules/mysql-connector { };