gnu: python-glances: Don't check for updates by default.

* gnu/packages/python-xyz.scm (python-glances)[source]: Add snippet.
master
Tobias Geerinckx-Rice 2019-07-31 05:39:16 +02:00
parent 9898a2d345
commit 15b4c91163
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 12 additions and 1 deletions

View File

@ -10952,7 +10952,18 @@ command @command{natsort} that exposes this functionality in the command line.")
(uri (pypi-uri "Glances" version))
(sha256
(base32
"07j1ggzsqiskyz1i4mrnyr9i95v0dqi0i0hibnv1l188km8shmi8"))))
"07j1ggzsqiskyz1i4mrnyr9i95v0dqi0i0hibnv1l188km8shmi8"))
(modules '((guix build utils)))
(snippet
'(begin
;; Glances phones PyPI for weekly update checks by default.
;; Disable these. The user can re-enable them if desired.
(substitute* "glances/outdated.py"
(("^(.*)self\\.load_config\\(config\\)\n" line indentation)
(string-append indentation
"self.args.disable_check_update = True\n"
line)))
#t))))
(build-system python-build-system)
(propagated-inputs
`(("python-future" ,python-future)