mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-04-30 06:08:37 +02:00
add python-glances, alterative to top/nmon
This commit is contained in:
parent
f6009f145c
commit
9aadc45b21
1 changed files with 28 additions and 0 deletions
|
@ -537,6 +537,34 @@
|
|||
)
|
||||
)
|
||||
|
||||
(use-modules (guix packages))
|
||||
(use-modules (guix download))
|
||||
(use-modules (gnu packages python))
|
||||
(use-modules (gnu packages python-xyz))
|
||||
(use-modules (guix build-system python))
|
||||
(use-modules (gnu packages xml))
|
||||
|
||||
|
||||
(define-public python-glances
|
||||
(package
|
||||
(name "python-glances")
|
||||
(version "3.2.3.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "Glances" version))
|
||||
(sha256
|
||||
(base32 "0qgwsrg19n4wk9i97xj1i57hwbxacqn6iziliyvjfx063zip2rqm"))))
|
||||
(build-system python-build-system)
|
||||
(propagated-inputs
|
||||
`(("python-defusedxml" ,python-defusedxml)
|
||||
("python-future" ,python-future)
|
||||
("python-psutil" ,python-psutil)))
|
||||
(home-page "https://github.com/nicolargo/glances")
|
||||
(synopsis "A cross-platform curses-based monitoring tool")
|
||||
(description "A cross-platform curses-based monitoring tool")
|
||||
(license #f))
|
||||
)
|
||||
|
||||
|
||||
;;; glicid.scm ends here
|
||||
|
|
Loading…
Add table
Reference in a new issue