diff options
Diffstat (limited to 'gnu/packages/python-graphics.scm')
| -rw-r--r-- | gnu/packages/python-graphics.scm | 26 |
1 files changed, 11 insertions, 15 deletions
diff --git a/gnu/packages/python-graphics.scm b/gnu/packages/python-graphics.scm index 1877e0935c7..be7f9ea6c95 100644 --- a/gnu/packages/python-graphics.scm +++ b/gnu/packages/python-graphics.scm | |||
| @@ -106,31 +106,27 @@ requiring an event loop, useful for creative responsive GUIs.") | |||
| 106 | (define-public python-asynckivy | 106 | (define-public python-asynckivy |
| 107 | (package | 107 | (package |
| 108 | (name "python-asynckivy") | 108 | (name "python-asynckivy") |
| 109 | (version "0.8.1") | 109 | (version "0.11.0") |
| 110 | (source | 110 | (source |
| 111 | (origin | 111 | (origin |
| 112 | (method git-fetch) ; no tests in PyPI release | 112 | (method git-fetch) |
| 113 | (uri (git-reference | 113 | (uri (git-reference |
| 114 | (url "https://github.com/asyncgui/asynckivy") | 114 | (url "https://github.com/asyncgui/asynckivy") |
| 115 | (commit version))) | 115 | (commit (string-append "v" version)))) |
| 116 | (file-name (git-file-name name version)) | 116 | (file-name (git-file-name name version)) |
| 117 | (sha256 | 117 | (sha256 |
| 118 | (base32 "0gjddv6d7bbjymvly2x5zaay1gyihls1c4bh7y1ppbvz15152lkj")))) | 118 | (base32 "0jxij58ax5lpnhhmhvvbf3sa1mdrbpq6kxab9r25lzgsbqjxj62z")))) |
| 119 | (build-system pyproject-build-system) | 119 | (build-system pyproject-build-system) |
| 120 | (arguments | 120 | (arguments |
| 121 | (list | 121 | (list |
| 122 | #:phases | 122 | #:build-backend "poetry.core.masonry.api" |
| 123 | #~(modify-phases %standard-phases | 123 | ;; XXX: Tests need some setup: AttributeError: 'NoneType' object has no |
| 124 | (add-before 'check 'set-home | 124 | ;; attribute 'create_window'. |
| 125 | (lambda _ | 125 | #:tests? #f)) |
| 126 | ;; 'kivy/__init__.py' wants to create $HOME/.kivy. | ||
| 127 | (setenv "HOME" "/tmp")))))) | ||
| 128 | (native-inputs | 126 | (native-inputs |
| 129 | (list python-poetry-core | 127 | (list python-poetry-core)) |
| 130 | python-pytest)) | ||
| 131 | (propagated-inputs | 128 | (propagated-inputs |
| 132 | (list python-kivy | 129 | (list python-asyncgui)) |
| 133 | python-asyncgui)) | ||
| 134 | (home-page "https://github.com/asyncgui/asynckivy") | 130 | (home-page "https://github.com/asyncgui/asynckivy") |
| 135 | (synopsis "Async library for Kivy") | 131 | (synopsis "Async library for Kivy") |
| 136 | (description | 132 | (description |
