me
/
guix
Archived
1
0
Fork 0

gnu: python-qasync: Update to 0.27.1.

* gnu/packages/python-xyz.scm (python-qasync): Update to 0.27.1.
[build-system]: Use pyproject-build-system.
[arguments]: Use G-Expressions.
[native-inputs]: Remove python-pytest-runner. Add python-poetry-core.

Change-Id: I3290a8b59f393c7bea6f200b5e538ad4be14d349
master
Vinicius Monego 2024-03-27 12:29:07 -03:00
parent a414fd2c9a
commit a17976e975
No known key found for this signature in database
GPG Key ID: 637B0B138065B68A
1 changed files with 9 additions and 10 deletions

View File

@ -19311,7 +19311,7 @@ applications.")
(define-public python-qasync (define-public python-qasync
(package (package
(name "python-qasync") (name "python-qasync")
(version "0.22.0") (version "0.27.1")
(source (source
(origin (origin
;; There are no tests in the PyPI tarball. ;; There are no tests in the PyPI tarball.
@ -19321,17 +19321,16 @@ applications.")
(commit (string-append "v" version)))) (commit (string-append "v" version))))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 "1q9cllrwf94whr0f6mipa0hdq1rcyqvklwx19g35g2dav8f3xkjl")))) (base32 "0j6ksfnq9qfjdfppbkdz7jh6w0gnslwnckhafmlgim29b25g0z51"))))
(build-system python-build-system) (build-system pyproject-build-system)
(arguments (arguments
`(#:test-target "pytest" (list #:phases
#:phases #~(modify-phases %standard-phases
(modify-phases %standard-phases (add-before 'check 'set-qpa
(add-before 'check 'set-qpa (lambda _
(lambda _ (setenv "QT_QPA_PLATFORM" "offscreen"))))))
(setenv "QT_QPA_PLATFORM" "offscreen"))))))
(native-inputs (native-inputs
(list python-pytest python-pytest-runner)) (list python-poetry-core python-pytest))
(propagated-inputs (propagated-inputs
(list python-pyqt)) (list python-pyqt))
(home-page "https://github.com/CabbageDevelopment/qasync") (home-page "https://github.com/CabbageDevelopment/qasync")