Files
nixpkgs/pkgs/by-name/na/nanopb/python-module.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
301 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
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
];
}