[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/03: gnu: Add python-psutil.
From: |
Ricardo Wurmus |
Subject: |
02/03: gnu: Add python-psutil. |
Date: |
Mon, 20 Jul 2015 09:50:54 +0000 |
rekado pushed a commit to branch master
in repository guix.
commit aaf625b8dc9a6d4d3f257af9f6db47fa9f414ee9
Author: Ricardo Wurmus <address@hidden>
Date: Fri Jul 10 14:57:05 2015 +0200
gnu: Add python-psutil.
* gnu/packages/python.scm (python-psutil, python2-psutil): New variables.
---
gnu/packages/python.scm | 30 ++++++++++++++++++++++++++++++
1 files changed, 30 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 82aff00..9550f0d 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -266,6 +266,36 @@ data types.")
"\n\nThis wrapper package provides symbolic links to the python binaries
without version suffix."))))
+(define-public python-psutil
+ (package
+ (name "python-psutil")
+ (version "3.0.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://pypi.python.org/packages/source/p/psutil/psutil-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "00c8h1mzqysih99z8pnbmdv117d2naldf11yjy50dhykxsf3n89z"))))
+ (build-system python-build-system)
+ (native-inputs
+ `(("python-setuptools" ,python-setuptools)))
+ (home-page "https://pypi.python.org/pypi/psutil/")
+ (synopsis "Library for retrieving information on running processes")
+ (description
+ "psutil (Python system and process utilities) is a library for retrieving
+information on running processes and system utilization (CPU, memory, disks,
+network) in Python. It is useful mainly for system monitoring, profiling and
+limiting process resources and management of running processes. It implements
+many functionalities offered by command line tools such as: ps, top, lsof,
+netstat, ifconfig, who, df, kill, free, nice, ionice, iostat, iotop, uptime,
+pidof, tty, taskset, pmap.")
+ (license bsd-3)))
+
+(define-public python2-psutil
+ (package-with-python2 python-psutil))
(define-public python-pytz
(package