mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
python3Packages.CppHeaderParser: init at 2.7.4
Signed-off-by: Pamplemousse <xav.maso@gmail.com>
This commit is contained in:
parent
ee4d146fc2
commit
45f7a707d1
26
pkgs/development/python-modules/cppheaderparser/default.nix
Normal file
26
pkgs/development/python-modules/cppheaderparser/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user