depot/third_party/nixpkgs/pkgs/development/python-modules/pybindgen/default.nix

39 lines
782 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
isPy3k,
pygccxml,
pythonOlder,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "pybindgen";
version = "0.22.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
pname = "PyBindGen";
inherit version;
hash = "sha256-jH8iORpJqEUY9aKtBuOlseg50Q402nYxUZyKKPy6N2Q=";
};
buildInputs = [ setuptools-scm ];
nativeCheckInputs = [ pygccxml ];
pythonImportsCheck = [ "pybindgen" ];
# Fails to import module 'cxxfilt' from pygccxml on Py3k
doCheck = (!isPy3k);
meta = with lib; {
description = "Python Bindings Generator";
homepage = "https://github.com/gjcarneiro/pybindgen";
license = licenses.lgpl21Plus;
maintainers = with maintainers; [ teto ];
};
}