linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / pybindgen / default.nix
blob9e8174f9b7f71b0a7c147ab79c4fd2807da21523
1 { lib, fetchPypi, buildPythonPackage, isPy3k, setuptools_scm, pygccxml }:
2 buildPythonPackage rec {
3   pname = "PyBindGen";
4   version = "0.21.0";
6   src = fetchPypi {
7     inherit pname version;
8     sha256 = "4501aa3954fdac7bb4c049894f8aa1f0f4e1c1f50cc2303feef9bbe3aecfe364";
9   };
11   buildInputs = [ setuptools_scm ];
13   checkInputs = [ pygccxml ];
14   doCheck = (!isPy3k); # Fails to import module 'cxxfilt' from pygccxml on Py3k
16   meta = with lib; {
17     homepage = "https://github.com/gjcarneiro/pybindgen";
18     description = "Python Bindings Generator";
19     license = licenses.lgpl2;
20     maintainers = with maintainers; [ teto ];
21   };