pygccxml: init at 1.9.1
Python library to play with castxml output, aka your program's clang-produced AST.
This commit is contained in:
parent
37210d4938
commit
604aa24f85
26
pkgs/development/python-modules/pygccxml/default.nix
Normal file
26
pkgs/development/python-modules/pygccxml/default.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ stdenv, castxml, fetchFromGitHub, buildPythonPackage,
|
||||||
|
llvmPackages, clang }:
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pygccxml";
|
||||||
|
version = "1.9.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "gccxml";
|
||||||
|
repo = "pygccxml";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "02ip03s0vmp7czzflbvf7qnybibfrd0rzqbc5zfmq3zmpnck3hvm";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ castxml llvmPackages.libcxxStdenv];
|
||||||
|
|
||||||
|
# running the suite is hard, needs to generate xml_generator.cfg
|
||||||
|
# but the format doesn't accept -isystem directives
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://github.com/gccxml/pygccxml;
|
||||||
|
description = "Python package for easy C++ declarations navigation";
|
||||||
|
license = licenses.boost;
|
||||||
|
maintainers = with maintainers; [ teto ];
|
||||||
|
};
|
||||||
|
}
|
@ -18710,6 +18710,10 @@ EOF
|
|||||||
propagatedBuildInputs = with self; [];
|
propagatedBuildInputs = with self; [];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
pybindgen = callPackage ../development/python-modules/pybindgen {};
|
||||||
|
|
||||||
|
pygccxml = callPackage ../development/python-modules/pygccxml {};
|
||||||
|
|
||||||
pymacaroons-pynacl = callPackage ../development/python-modules/pymacaroons-pynacl { };
|
pymacaroons-pynacl = callPackage ../development/python-modules/pymacaroons-pynacl { };
|
||||||
|
|
||||||
pynacl = callPackage ../development/python-modules/pynacl { };
|
pynacl = callPackage ../development/python-modules/pynacl { };
|
||||||
|
Loading…
Reference in New Issue
Block a user