mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-07 03:44:06 -05:00
gnu: Add python-easyprocess.
* gnu/packages/python-xyz.scm (python-easyprocess): New variable.
This commit is contained in:
parent
83706ea9e9
commit
570a4c77f8
1 changed files with 20 additions and 0 deletions
|
@ -15177,6 +15177,26 @@ (define-public ptpython-2
|
|||
(package/inherit base
|
||||
(name "ptpython2"))))
|
||||
|
||||
(define-public python-easyprocess
|
||||
(package
|
||||
(name "python-easyprocess")
|
||||
(version "0.3")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "EasyProcess" version))
|
||||
(sha256
|
||||
(base32 "115rzzr0hx4af4m6krf7dxn8851n4l8jfxahjzjc2r0zq2m8v57v"))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
;; Tests require pyvirtualdisplay, which requires this package.
|
||||
`(#:tests? #f))
|
||||
(home-page "https://github.com/ponty/easyprocess")
|
||||
(synopsis "Python subprocess interface")
|
||||
(description
|
||||
"@code{easyprocess} is an easy to use Python subprocess interface.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public python-stem
|
||||
(package
|
||||
(name "python-stem")
|
||||
|
|
Loading…
Reference in a new issue