python3Packages.CppHeaderParser: init at 2.7.4

Signed-off-by: Pamplemousse <xav.maso@gmail.com>
gstqt5
Pamplemousse 2020-09-30 16:19:38 -07:00 committed by Jon
parent ee4d146fc2
commit 45f7a707d1
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ buildPythonPackage
, fetchPypi
, ply
, stdenv
}:
buildPythonPackage rec {
pname = "CppHeaderParser";
version = "2.7.4";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-OCswQW2VsKXoUCshSBDcrCpWQykX4mUUR9Or4lPjzEI=";
};
propagatedBuildInputs = [ ply ];
pythonImportsCheck = [ "CppHeaderParser" ];
meta = with stdenv.lib; {
description = "Parse C++ header files using ply.lex to generate navigable class tree representing the class structure";
homepage = "https://sourceforge.net/projects/cppheaderparser/";
license = licenses.bsdOriginal;
maintainers = with maintainers; [ pamplemousse ];
};
}

View File

@ -1321,6 +1321,8 @@ in {
cozy = callPackage ../development/python-modules/cozy { };
cppheaderparser = callPackage ../development/python-modules/cppheaderparser { };
cppy = callPackage ../development/python-modules/cppy { };
cram = callPackage ../development/python-modules/cram { };