diff options
author | Vinicius Monego <monego@posteo.net> | 2022-01-14 20:09:18 +0000 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2022-01-14 21:25:40 +0100 |
commit | 4835fefe62c8396b1f46dccf5d3210312dc85cfb (patch) | |
tree | 1419e869a25da5084abbd9f0c3ee4ec04f4ea03c /gnu/packages | |
parent | 40731e2d4ea09b5db081d80a60e941e151afd1b0 (diff) | |
download | guix-4835fefe62c8396b1f46dccf5d3210312dc85cfb.tar.gz guix-4835fefe62c8396b1f46dccf5d3210312dc85cfb.zip |
gnu: python-qasync: Update to 0.22.0.
* gnu/packages/python-xyz.scm (python-qasync): Update to 0.22.0.
[arguments]<#:phases>: Don't return #t.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/python-xyz.scm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 6afc235d25..8a184d1ad6 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -14616,7 +14616,7 @@ applications.") (define-public python-qasync (package (name "python-qasync") - (version "0.15.0") + (version "0.22.0") (source (origin ;; There are no tests in the PyPI tarball. @@ -14626,7 +14626,7 @@ applications.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0va9h6v102d7mxz608banjc0l0v02dq3ywhr5i4nqaxx3qkazc2l")))) + (base32 "1q9cllrwf94whr0f6mipa0hdq1rcyqvklwx19g35g2dav8f3xkjl")))) (build-system python-build-system) (arguments `(#:test-target "pytest" @@ -14634,8 +14634,7 @@ applications.") (modify-phases %standard-phases (add-before 'check 'set-qpa (lambda _ - (setenv "QT_QPA_PLATFORM" "offscreen") - #t))))) + (setenv "QT_QPA_PLATFORM" "offscreen")))))) (native-inputs (list python-pytest python-pytest-runner)) (propagated-inputs |