1 { lib, fetchPypi, buildPythonPackage, isPy3k, setuptools_scm, pygccxml }:
2 buildPythonPackage rec {
8 sha256 = "4501aa3954fdac7bb4c049894f8aa1f0f4e1c1f50cc2303feef9bbe3aecfe364";
11 buildInputs = [ setuptools_scm ];
13 checkInputs = [ pygccxml ];
14 doCheck = (!isPy3k); # Fails to import module 'cxxfilt' from pygccxml on Py3k
17 homepage = "https://github.com/gjcarneiro/pybindgen";
18 description = "Python Bindings Generator";
19 license = licenses.lgpl2;
20 maintainers = with maintainers; [ teto ];