1{ stdenv, fetchPypi, buildPythonPackage, setuptools_scm, pygccxml }: 2buildPythonPackage rec { 3 pname = "PyBindGen"; 4 version = "0.19.0"; 5 6 src = fetchPypi { 7 inherit pname version; 8 sha256 = "23f2b760e352729208cd4fbadbc618bd00f95a0a24db21a4182833afcc3b5208"; 9 }; 10 11 buildInputs = [ setuptools_scm ]; 12 13 checkInputs = [ pygccxml ]; 14 15 meta = with stdenv.lib; { 16 homepage = https://github.com/gjcarneiro/pybindgen; 17 description = "Python Bindings Generator"; 18 license = licenses.lgpl2; 19 maintainers = with maintainers; [ teto ]; 20 }; 21} 22 23