diff options
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 68d5bd8c27..9a42072cee 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -3,7 +3,7 @@ ;;; Copyright © 2013-2024 Ludovic Courtès <[email protected]> ;;; Copyright © 2013, 2014, 2015, 2016, 2019, 2023 Andreas Enge <[email protected]> ;;; Copyright © 2014, 2015 Mark H Weaver <[email protected]> -;;; Copyright © 2014, 2017, 2021, 2022 Eric Bavier <[email protected]> +;;; Copyright © 2014, 2017, 2021, 2022, 2024 Eric Bavier <[email protected]> ;;; Copyright © 2014, 2015 Federico Beffa <[email protected]> ;;; Copyright © 2015 Omar Radwan <[email protected]> ;;; Copyright © 2015 Pierre-Antoine Rault <[email protected]> @@ -15341,6 +15341,24 @@ checksums. It implement more than a hundred checksum routines.") "Python library that makes exceptions handling and inspection easier.") (license license:expat))) +(define-public python-stdio-mgr + (package + (name "python-stdio-mgr") + (version "1.0.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "stdio-mgr" version)) + (sha256 + (base32 "11j1kxxrp76vm6l8wvfnw50fb6lmckxf25nkra70jpiacd8kn73q")))) + (build-system pyproject-build-system) + (propagated-inputs (list python-attrs)) + (home-page "https://github.com/bskinn/stdio-mgr") + (synopsis "Context manager for mocking/wrapping stdin/stdout/stderr") + (description "This package contains a context manager for mocking/wrapping +stdin/stdout/stderr.") + (license license:expat))) + (define-public python-stdlib-list (package (name "python-stdlib-list") |