diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-03 23:10:10 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-03 23:12:47 +0100 |
| commit | 35cb7a376e4a51256f0abfa5b18749517d5cf9f1 (patch) | |
| tree | 3851b09a6183a7cf967b613123a78c3a09fb6bed /gnu | |
| parent | e28c7be06a4df13ea325f592694e6952c5f963ff (diff) | |
gnu: Add python-show-in-file-manager.
* gnu/packages/python-xyz.scm (python-show-in-file-manager): New variable.
Change-Id: I832fa8627aad71e28bb4679597e37d6c73be512e
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 8038ae30eeb..b1518bea932 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -1610,6 +1610,33 @@ stdlib.") Python packages.") (license license:mpl2.0))) +(define-public python-show-in-file-manager + (package + (name "python-show-in-file-manager") + (version "1.1.5") + (source + (origin + (method url-fetch) + (uri (pypi-uri "show-in-file-manager" version)) + (sha256 + (base32 "111d363i7m0lr295301q39j6h0l6nfybyn2cvn7xi3yll60a24zd")))) + (build-system pyproject-build-system) + (native-inputs + (list python-argparse-manpage + python-setuptools)) + (propagated-inputs + (list python-packaging + ;; python-pywin32 + python-pyxdg)) + (home-page "https://github.com/damonlynch/showinfilemanager") + (synopsis "Open the system file manager and select files in it") + (description + "Show in File Manager is a Python package to open the system file manager +and optionally select files in it. The point is not to open the files, but to +select them in the file manager, thereby highlighting the files and allowing +the user to quickly do something with them.") + (license license:expat))) + (define-public python-shxparser (package (name "python-shxparser") |
