24 lines
558 B
Nix
24 lines
558 B
Nix
{ stdenv, fetchPypi, buildPythonPackage, setuptools_scm, pygccxml }:
|
|
buildPythonPackage rec {
|
|
pname = "PyBindGen";
|
|
version = "0.19.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "23f2b760e352729208cd4fbadbc618bd00f95a0a24db21a4182833afcc3b5208";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|
|
|
|
|