pybindgen: init at 0.18.0
Helps generating python bindings to C. Required to generate www.nsnam.org bindings.
This commit is contained in:
parent
604aa24f85
commit
94c1b10dd1
23
pkgs/development/python-modules/pybindgen/default.nix
Normal file
23
pkgs/development/python-modules/pybindgen/default.nix
Normal file
@ -0,0 +1,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 ];
|
||||
};
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user