forked from mirrors/nixpkgs
Merge pull request #166492 from r-ryantm/auto-update/python310Packages.pybindgen
python310Packages.pybindgen: 0.22.0 -> 0.22.1
This commit is contained in:
commit
69ffe9140c
|
@ -1,22 +1,44 @@
|
|||
{ lib, fetchPypi, buildPythonPackage, isPy3k, setuptools-scm, pygccxml }:
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, isPy3k
|
||||
, pygccxml
|
||||
, pythonOlder
|
||||
, setuptools-scm
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "PyBindGen";
|
||||
version = "0.22.0";
|
||||
pname = "pybindgen";
|
||||
version = "0.22.1";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "5b4837d3138ac56863d93fe462f1dac39fb87bd50898e0da4c57fefd645437ac";
|
||||
pname = "PyBindGen";
|
||||
inherit version;
|
||||
hash = "sha256-jH8iORpJqEUY9aKtBuOlseg50Q402nYxUZyKKPy6N2Q=";
|
||||
};
|
||||
|
||||
buildInputs = [ setuptools-scm ];
|
||||
buildInputs = [
|
||||
setuptools-scm
|
||||
];
|
||||
|
||||
checkInputs = [ pygccxml ];
|
||||
doCheck = (!isPy3k); # Fails to import module 'cxxfilt' from pygccxml on Py3k
|
||||
checkInputs = [
|
||||
pygccxml
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"pybindgen"
|
||||
];
|
||||
|
||||
# Fails to import module 'cxxfilt' from pygccxml on Py3k
|
||||
doCheck = (!isPy3k);
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/gjcarneiro/pybindgen";
|
||||
description = "Python Bindings Generator";
|
||||
license = licenses.lgpl2;
|
||||
homepage = "https://github.com/gjcarneiro/pybindgen";
|
||||
license = licenses.lgpl21Plus;
|
||||
maintainers = with maintainers; [ teto ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue