mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
Merge pull request #309080 from anthonyroussel/fix-mypy-protobuf
python312Packages.mypy-protobuf: fix build
This commit is contained in:
commit
ecd3515136
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user