summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-09-20 15:51:54 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:36:35 +0100
commitc3c56b1a2d1c6b98eb0ab486dc6119d3be8267de (patch)
treee7b623fa650dccff817d001d4a048a59bc5d5b77 /gnu/packages/python-xyz.scm
parent94c6e8ed2a7686876aeee0bded2339b47904df42 (diff)
gnu: Add python-findpython.
* gnu/packages/python-xyz.scm (python-findpython): New variable. Change-Id: Ibec3d6e2307508e7cf6ed2f73db7e003e4f719e0
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm24
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index b6a23aa14b..625a926bef 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -838,6 +838,30 @@ built-in @code{int} and @code{float} that are on par or faster with the Python
equivalents.")
(license license:expat)))
+(define-public python-findpython
+ (package
+ (name "python-findpython")
+ (version "0.7.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "findpython" version))
+ (sha256
+ (base32 "1p3kqr00sym0yaddsbaw1gf7nslfnscnd050q6ipj9rmfry68ccb"))))
+ (build-system pyproject-build-system)
+ (native-inputs
+ (list python-pdm-backend
+ python-pytest))
+ (propagated-inputs
+ (list python-packaging
+ python-platformdirs))
+ (home-page "https://github.com/frostming/findpython")
+ (synopsis "Find Python versions the system")
+ (description
+ "This package provides a utility to find Python versions on the current
+system.")
+ (license license:expat)))
+
(define-public python-flake8-class-newline
(package
(name "python-flake8-class-newline")