summary refs log tree commit diff
path: root/pkgs/development/python-modules/pybindgen/default.nix
blob: 09cb4c2cdf98e1b8520b8adf874ecb0238a1ad7c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchPypi, buildPythonPackage, setuptools_scm, pygccxml }:
buildPythonPackage rec {
  pname = "PyBindGen";
  version = "0.18.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1sl4jn8rildv6f62cab66w791cixhaaxl7gwg9labs099rl74yl6";
  };

  buildInputs = [ setuptools_scm ];

  checkInputs = [ pygccxml ];

  meta = with stdenv.lib; {
    homepage = https://github.com/gjcarneiro/pybindgen;
    description = "Python Bindings Generator";
    license = licenses.lgpl2;
    maintainers = with maintainers; [ teto ];
  };
}