From f8e42bff04c9a6b2ee1e7eed684b18bb7ed1c69a Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Fri, 31 Oct 2025 02:10:26 +0100 Subject: gnu: python-colorama: Move to (gnu packages python-build). MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/python-xyz.scm (python-colorama): Move from here… * gnu/packages/python-build.scm (python-colorama): …to here. [native-inputs]: Replace python-pytest by python-pytest-bootstrap. Change-Id: I3ac5f6611a411458a0aeca0d6d4a2af79ce49e54 Signed-off-by: Sharlatan Hellseher --- gnu/packages/python-build.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'gnu/packages/python-build.scm') diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm index 4e520d67c82..77d24d2ea74 100644 --- a/gnu/packages/python-build.scm +++ b/gnu/packages/python-build.scm @@ -82,6 +82,26 @@ run simple @code{argparse} parsers from function signatures.") (license license:lgpl3+))) +(define-public python-colorama + (package + (name "python-colorama") + (version "0.4.6") + (source + (origin + (method url-fetch) + (uri (pypi-uri "colorama" version)) + (sha256 + (base32 "0i3fpq0w5mbfdpy3z9p5raw4fg17jxr6jwh5l8qhavpdnxf5ys88")))) + (build-system pyproject-build-system) + (native-inputs + (list python-hatchling + python-pytest-bootstrap)) + (home-page "https://pypi.org/project/colorama/") + (synopsis "Colored terminal text rendering for Python") + (description + "Colorama is a Python library for rendering colored terminal text.") + (license license:bsd-3))) + (define-public python-pathspec (package (name "python-pathspec") -- cgit v1.3