Archived
1
0
Fork 0

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>
This commit is contained in:
Gisement 2024-07-14 00:01:30 +02:00 committed by jgart
parent bf6ab0e0f5
commit c0690f8c69
No known key found for this signature in database
GPG key ID: A52AA2B477B6DD35

View file

@ -14100,26 +14100,19 @@ replacement for dictionaries where immutability is desired.")
(define-public python-emoji (define-public python-emoji
(package (package
(name "python-emoji") (name "python-emoji")
(version "1.6.1") (version "2.12.1")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "emoji" version)) (uri (pypi-uri "emoji" version))
(sha256 (sha256
(base32 "0923mpixwq6hdpkgvi4r46alfvf608iq975rb8lnqpq29j71mmjk")))) (base32 "1svk94pad8gcvjwd329zmfrw09wakwh6qjvnhf6sa6k92y44i82a"))))
(build-system python-build-system) (build-system pyproject-build-system)
(arguments (native-inputs (list python-pytest python-typing-extensions))
`(#:phases
(modify-phases %standard-phases
(replace 'check
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
(invoke "python" "-m" "pytest")))))))
(native-inputs
(list python-pytest))
(home-page "https://github.com/carpedm20/emoji/") (home-page "https://github.com/carpedm20/emoji/")
(synopsis "Emoji terminal output for Python") (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 entire set of Emoji codes as defined by the Unicode Consortium is supported in
addition to a bunch of aliases.") addition to a bunch of aliases.")
(license license:bsd-3))) (license license:bsd-3)))