mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-stdio-mgr: Fix build.
* gnu/packages/python-xyz.scm (python-stdio-mgr) [source]: Swap to git checkout containing tests. [arguments]<test-flags>: Ignore doctests. [native-inputs]: Add python-pytest, python-setuptools, and python-wheel. [description]: Start from a new line. Change-Id: I0b03adad8b2277686c7e07859eebd7555934ac8c
This commit is contained in:
parent
93a663516a
commit
0817e9ba77
1 changed files with 18 additions and 5 deletions
|
@ -15853,15 +15853,28 @@ checksums. It implement more than a hundred checksum routines.")
|
|||
(version "1.0.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "stdio-mgr" version))
|
||||
(method git-fetch) ; no tests data in PyPi package
|
||||
(uri (git-reference
|
||||
(url "https://github.com/bskinn/stdio-mgr")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "11j1kxxrp76vm6l8wvfnw50fb6lmckxf25nkra70jpiacd8kn73q"))))
|
||||
(base32 "0xb6779s7j162xhig6vc63f9nn3v406fvjh1zqbqbf8zcl17ific"))))
|
||||
(build-system pyproject-build-system)
|
||||
(propagated-inputs (list python-attrs))
|
||||
(arguments
|
||||
(list
|
||||
;; Do not run doctests requiring sphinx.
|
||||
#:test-flags #~(list "--ignore=README.rst")))
|
||||
(native-inputs
|
||||
(list python-pytest
|
||||
python-setuptools
|
||||
python-wheel))
|
||||
(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
|
||||
(description
|
||||
"This package contains a context manager for mocking/wrapping
|
||||
stdin/stdout/stderr.")
|
||||
(license license:expat)))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue