about summary refs log tree commit diff
path: root/pkgs/by-name/na/nanopb/python-module.nix
blob: f58c955307d84684a6e086bdabcecde04e6e390e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ 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
  ];
}