mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add python-stdio-mgr.
* gnu/packages/python-xyz.scm (python-stdio-mgr): New variable. Change-Id: Ia2e9cfda69e453b61ba948a6ad18f91364b799df
This commit is contained in:
parent
1daad52eac
commit
188fee428f
1 changed files with 19 additions and 1 deletions
|
@ -3,7 +3,7 @@
|
|||
;;; Copyright © 2013-2024 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2013, 2014, 2015, 2016, 2019, 2023 Andreas Enge <andreas@enge.fr>
|
||||
;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
|
||||
;;; Copyright © 2014, 2017, 2021, 2022 Eric Bavier <bavier@posteo.net>
|
||||
;;; Copyright © 2014, 2017, 2021, 2022, 2024 Eric Bavier <bavier@posteo.net>
|
||||
;;; Copyright © 2014, 2015 Federico Beffa <beffa@fbengineering.ch>
|
||||
;;; Copyright © 2015 Omar Radwan <toxemicsquire4@gmail.com>
|
||||
;;; Copyright © 2015 Pierre-Antoine Rault <par@rigelk.eu>
|
||||
|
@ -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")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue