diff options
author | Gisement <sisiutl@egregore.fun> | 2024-07-14 00:01:30 +0200 |
---|---|---|
committer | jgart <jgart@dismail.de> | 2024-07-15 16:39:51 -0500 |
commit | c0690f8c694d5d67e44f84343cba884d01aa6d2e (patch) | |
tree | 8de95c36100f312979de3032516334358c401f3e | |
parent | bf6ab0e0f5066d999e027a7eb8ecf05db71123ce (diff) | |
download | guix-c0690f8c694d5d67e44f84343cba884d01aa6d2e.tar.gz guix-c0690f8c694d5d67e44f84343cba884d01aa6d2e.zip |
gnu: python-emoji: Update to 2.12.1.
* gnu/packages/python-xyz.scm (python-emoji): Update to 2.12.1.
[build-system]: Use pyproject build system.
[native-inputs]: Add python-typing-extensions.
[description]: Format description to start on a new line.
Change-Id: Id262ba7f05f5fa6205bc19709442e62c1856f8a9
Signed-off-by: jgart <jgart@dismail.de>
-rw-r--r-- | gnu/packages/python-xyz.scm | 19 |
1 files changed, 6 insertions, 13 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 88f19c0f55..4468b2c8ee 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -14100,26 +14100,19 @@ replacement for dictionaries where immutability is desired.") (define-public python-emoji (package (name "python-emoji") - (version "1.6.1") + (version "2.12.1") (source (origin (method url-fetch) (uri (pypi-uri "emoji" version)) (sha256 - (base32 "0923mpixwq6hdpkgvi4r46alfvf608iq975rb8lnqpq29j71mmjk")))) - (build-system python-build-system) - (arguments - `(#:phases - (modify-phases %standard-phases - (replace 'check - (lambda* (#:key tests? #:allow-other-keys) - (when tests? - (invoke "python" "-m" "pytest"))))))) - (native-inputs - (list python-pytest)) + (base32 "1svk94pad8gcvjwd329zmfrw09wakwh6qjvnhf6sa6k92y44i82a")))) + (build-system pyproject-build-system) + (native-inputs (list python-pytest python-typing-extensions)) (home-page "https://github.com/carpedm20/emoji/") (synopsis "Emoji terminal output for Python") - (description "This package provides Emoji terminal output for Python. The + (description + "This package provides Emoji terminal output for Python. The entire set of Emoji codes as defined by the Unicode Consortium is supported in addition to a bunch of aliases.") (license license:bsd-3))) |