gnu: Add python-sinfo.
* gnu/packages/python-xyz.scm (python-sinfo): New variable.
This commit is contained in:
parent
b346a7c7db
commit
50dfbbf8ef
1 changed files with 19 additions and 0 deletions
|
@ -2189,6 +2189,25 @@ The event dispatch is implicit, which means you can easily use @code{Eventlet}
|
||||||
from the Python interpreter, or as a small part of a larger application.")
|
from the Python interpreter, or as a small part of a larger application.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public python-sinfo
|
||||||
|
(package
|
||||||
|
(name "python-sinfo")
|
||||||
|
(version "0.3.4")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "sinfo" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0kdsp883mx0lfyykv0p12bvs203kdm3skb8bw5wf2pc7kb393sl1"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("python-stdlib-list" ,python-stdlib-list)))
|
||||||
|
(home-page "https://gitlab.com/joelostblom/session_info")
|
||||||
|
(synopsis "Output module version information loaded in a Python session")
|
||||||
|
(description "This package outputs version information for modules loaded
|
||||||
|
in the current session, Python, and the OS.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public python-six
|
(define-public python-six
|
||||||
(package
|
(package
|
||||||
(name "python-six")
|
(name "python-six")
|
||||||
|
|
Reference in a new issue