diff options
author | Brian Kubisiak <brian@kubisiak.com> | 2025-05-25 06:40:19 -0700 |
---|---|---|
committer | Ian Eure <ian@retrospec.tv> | 2025-06-10 15:43:44 -0700 |
commit | f85b4b5ca023dfd03d42dce4abf96622868a137b (patch) | |
tree | 5924829a7ec2d9f4466b2bdcb7633402eadaed5f | |
parent | 04416d85a4c0ece8c0d1c7329038dd1381a98a22 (diff) |
gnu: Add python-kconfiglib.
* gnu/packages/python-xyz.scm (python-kconfiglib): New variable.
Change-Id: I651ec0c764757c665412f514d49dadc9a4ff5edb
Signed-off-by: Ian Eure <ian@retrospec.tv>
-rw-r--r-- | gnu/packages/python-xyz.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index ebb3970c3a..b6ea71e15c 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -7079,6 +7079,30 @@ something else) to Python data-types.") (base32 "10zqvpaky51kgb8nd42bk7jwl8cn2zvayxjpdc1wwmpybj92x67s")))))) +(define-public python-kconfiglib + (package + (name "python-kconfiglib") + (version "14.1.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "kconfiglib" version)) + (sha256 + (base32 "0g690bk789hsry34y4ahvly5c8w8imca90ss4njfqf7m2qicrlmy")))) + (build-system pyproject-build-system) + (native-inputs + (list python-setuptools + python-wheel + `(,python "tk"))) + (home-page "https://github.com/ulfalizer/Kconfiglib") + (synopsis + "Flexible Python library for parsing and creating Linux Kconfig files") + (description + "Kconfiglib is a Python implementation of a parser for Linux Kconfig files. +It can be used as a Python library or as a standalone terminal or GUI menuconfig +interface.") + (license license:isc))) + (define-public python-kitchen (package (name "python-kitchen") |