python: python-py3status: Update to 3.7.

* gnu/packages/python.scm (python-py3status): Update to 3.7.
 [arguments]: Adjust string substitution.
This commit is contained in:
Tomáš Čech 2018-03-27 20:32:16 +02:00
parent 55dc003877
commit 0d0cf3b0f6
No known key found for this signature in database
GPG Key ID: 4A23E34FA033436D
1 changed files with 4 additions and 4 deletions

View File

@ -8616,14 +8616,14 @@ to occurrences in strings and comments.")
(define-public python-py3status (define-public python-py3status
(package (package
(name "python-py3status") (name "python-py3status")
(version "3.1") (version "3.7")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "py3status" version)) (uri (pypi-uri "py3status" version))
(sha256 (sha256
(base32 (base32
"0i283z1pivmir61z8kbiycigc94l61v33ygzkhczf1ifq7cppyds")))) "0shxcfz4wcczj0mhwp4w0dvwd2fdd9bgprq8slim1519iiqzgwhq"))))
(build-system python-build-system) (build-system python-build-system)
(inputs (inputs
`(("file" ,file))) `(("file" ,file)))
@ -8636,8 +8636,8 @@ to occurrences in strings and comments.")
(lambda* (#:key inputs #:allow-other-keys) (lambda* (#:key inputs #:allow-other-keys)
(let ((file-path (assoc-ref inputs "file"))) (let ((file-path (assoc-ref inputs "file")))
(substitute* "py3status/parse_config.py" (substitute* "py3status/parse_config.py"
(("check_output\\(\\['file'") (("\\['file', '-b'")
(string-append "check_output(['" file-path "/bin/file'"))) (string-append "['" file-path "/bin/file', '-b'")))
#t)))) #t))))
#:tests? #f)) ; TODO: Requires many libraries not in Guix. #:tests? #f)) ; TODO: Requires many libraries not in Guix.
(home-page "https://github.com/ultrabug/py3status") (home-page "https://github.com/ultrabug/py3status")