mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-pymsgbox: Switch to pyproject.
* gnu/packages/python-xyz.scm (python-pymsgbox): [build-system]: Switch to pyproject-build-system. [native-inputs]: Add python-setuptools, python-wheel. Signed-off-by: jgart <jgart@dismail.de>
This commit is contained in:
parent
e437737a92
commit
4c6eab4f13
1 changed files with 25 additions and 24 deletions
|
@ -7635,29 +7635,30 @@ memory usage and transliteration quality.")
|
|||
(license license:expat)))
|
||||
|
||||
(define-public python-pymsgbox
|
||||
(package
|
||||
(name "python-pymsgbox")
|
||||
(version "1.0.6")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
;; LICENSE.txt is not present on pypi
|
||||
(url "https://github.com/asweigart/PyMsgBox")
|
||||
(commit "55926b55f46caa969c5ddb87990ebea2737bd66f")))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0zy7rjfpwlrd8b64j7jk2lb8m2npc21rnpwakpfvwgl4nxdy80rg"))))
|
||||
(arguments
|
||||
;; Circular dependency to run tests:
|
||||
;; Tests need pyautogui, which depends on pymsgbox.
|
||||
'(#:tests? #f))
|
||||
(build-system python-build-system)
|
||||
(home-page "https://github.com/asweigart/PyMsgBox")
|
||||
(synopsis "Python module for JavaScript-like message boxes")
|
||||
(description
|
||||
"PyMsgBox is a simple, cross-platform, pure Python module for
|
||||
(let ((commit "55926b55f46caa969c5ddb87990ebea2737bd66f")
|
||||
(revision "0"))
|
||||
(package
|
||||
(name "python-pymsgbox")
|
||||
(version (git-version "1.0.6" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/asweigart/PyMsgBox")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0zy7rjfpwlrd8b64j7jk2lb8m2npc21rnpwakpfvwgl4nxdy80rg"))))
|
||||
(build-system pyproject-build-system)
|
||||
(arguments
|
||||
;; Circular dependency to run tests:
|
||||
;; Tests need pyautogui, which depends on pymsgbox.
|
||||
'(#:tests? #f))
|
||||
(native-inputs (list python-setuptools python-wheel))
|
||||
(home-page "https://github.com/asweigart/PyMsgBox")
|
||||
(synopsis "Python module for JavaScript-like message boxes")
|
||||
(description
|
||||
"PyMsgBox is a simple, cross-platform, pure Python module for
|
||||
JavaScript-like message boxes. Types of dialog boxes include:
|
||||
@enumerate
|
||||
@item alert
|
||||
|
@ -7666,7 +7667,7 @@ JavaScript-like message boxes. Types of dialog boxes include:
|
|||
@item password
|
||||
@end enumerate
|
||||
")
|
||||
(license license:bsd-3)))
|
||||
(license license:bsd-3))))
|
||||
|
||||
(define-public python-pympler
|
||||
(package
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue