~ruther/guix-local

4c6eab4f1394988435100ebe4dc27ae1ed7dd987 — Nicolas Graves 7 months ago e437737
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>
1 files changed, 25 insertions(+), 24 deletions(-)

M gnu/packages/python-xyz.scm
M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +25 -24
@@ 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