1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: Add python-cxxheaderparser.

* gnu/packages/python-xyz.scm (python-cxxheaderparser): New variable.

Change-Id: I3e9d07cf37bf0a6268371ac562074f42c9866ab6
This commit is contained in:
Cayetano Santos
2026-02-07 19:57:53 +01:00
parent 3a3533826b
commit fa6b510864

View File

@@ -34976,6 +34976,29 @@ versa. Extended WKB/WKT are also supported.")
Python code as generators in your source files to generate arbitrary text.")
(license license:expat)))
(define-public python-cxxheaderparser
(package
(name "python-cxxheaderparser")
(version "1.7.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/robotpy/cxxheaderparser")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "0x8bd8zffjg1cq9hgglr445582kyjw5qs6mq7n6k7n01ihhni3hs"))))
(build-system pyproject-build-system)
(native-inputs
(list python-hatch-vcs python-pytest))
(home-page "https://github.com/robotpy/cxxheaderparser/")
(synopsis "Python C++ header parser")
(description "Pure python C++ header parser that parses C++ headers in a
mildly naive manner that allows it to handle many C constructs, including
many (C++11 and beyond) features.")
(license license:bsd-3)))
(define-public python-bsdiff4
(package
(name "python-bsdiff4")