18 lines
301 B
Nix
18 lines
301 B
Nix
|
|
{
|
||
|
|
python3,
|
||
|
|
version,
|
||
|
|
generator-out,
|
||
|
|
}:
|
||
|
|
python3.pkgs.buildPythonPackage {
|
||
|
|
pname = "nanopb-python-module";
|
||
|
|
inherit version;
|
||
|
|
src = generator-out;
|
||
|
|
pyproject = true;
|
||
|
|
pythonImportsCheck = [ "nanopb" ];
|
||
|
|
propagatedBuildInputs = with python3.pkgs; [
|
||
|
|
setuptools
|
||
|
|
protobuf
|
||
|
|
six
|
||
|
|
];
|
||
|
|
}
|