diff options
author | Hanketsu <hanketsu@egregore.fun> | 2025-02-27 20:13:02 +0100 |
---|---|---|
committer | Hanketsu <hanketsu@egregore.fun> | 2025-06-13 00:04:32 +0200 |
commit | 12de7fe66445f0e3a495b25b89208dd27e51d2de (patch) | |
tree | 15bc3662aa1876c638598623faa6e98f12900b11 | |
parent | fe4e02892d0e7bd24345607742c96d97711b78c9 (diff) |
battering: Add python-xmind.
* battering/packages/python-xyz.scm (python-xmind): New variable.
-rw-r--r-- | battering/packages/python-xyz.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/battering/packages/python-xyz.scm b/battering/packages/python-xyz.scm index 5cc364b..c605ef0 100644 --- a/battering/packages/python-xyz.scm +++ b/battering/packages/python-xyz.scm @@ -109,3 +109,22 @@ looks like Material Design (close enough).") (description "Python package for creating and visualizing interactive network graphs.") (license license:bsd-3))) + +(define-public python-xmind + (package + (name "python-xmind") + (version "1.2.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "XMind" version)) + (sha256 + (base32 "0vlpz87m5xnmnbzjrzzspjrz73m2xdnxh5gmsph3z8y0y6ns8hbn")))) + (build-system pyproject-build-system) + (native-inputs (list python-setuptools python-wheel)) + (home-page "https://github.com/zhuifengshen/xmind") + (synopsis + "XMind Python") + (description + "XMind Python") + (license license:expat))) |