1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-18 15:39:46 +03:00
nixpkgs/pkgs/development/python-modules/cppheaderparser/default.nix

29 lines
668 B
Nix
Raw Normal View History

2024-05-22 16:01:06 +02:00
{
buildPythonPackage,
fetchPypi,
ply,
lib,
}:
buildPythonPackage rec {
pname = "cppheaderparser";
version = "2.7.4";
src = fetchPypi {
pname = "CppHeaderParser";
inherit version;
hash = "sha256-OCswQW2VsKXoUCshSBDcrCpWQykX4mUUR9Or4lPjzEI=";
};
propagatedBuildInputs = [ ply ];
pythonImportsCheck = [ "CppHeaderParser" ];
meta = with 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 ];
};
}