[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add python-sinfo.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add python-sinfo. |
Date: |
Tue, 01 Jun 2021 04:18:23 -0400 |
This is an automated email from the git hooks/post-receive script.
roelj pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 50dfbbf gnu: Add python-sinfo.
50dfbbf is described below
commit 50dfbbf8ef52111067071c788e19fc21d54c40d6
Author: Roel Janssen <roel@gnu.org>
AuthorDate: Tue Jun 1 10:18:00 2021 +0200
gnu: Add python-sinfo.
* gnu/packages/python-xyz.scm (python-sinfo): New variable.
---
gnu/packages/python-xyz.scm | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 05c1b6d..a5cc04e 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -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.")
(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
(package
(name "python-six")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add python-sinfo.,
guix-commits <=