Files
nixpkgs/pkgs/by-name/na/nanopb/python-module.nix
2026-07-16 16:22:41 +02:00

18 lines
287 B
Nix

{
python3,
version,
generator-out,
}:
python3.pkgs.buildPythonPackage {
pname = "nanopb";
inherit version;
src = generator-out;
pyproject = true;
pythonImportsCheck = [ "nanopb" ];
propagatedBuildInputs = with python3.pkgs; [
setuptools
protobuf
six
];
}