gnu: urlscan: Update to 1.0.0.

* gnu/packages/mail.scm (urlscan): Update to 1.0.0.
[arguments]: Skip the test phase.
[build-system]: Switch to the pyproject-build-system.
[native-inputs]: Add python-hatch-vcs, python-hatchling.
This commit is contained in:
Efraim Flashner 2023-06-04 21:06:47 +03:00
parent 9d9e793da5
commit f8b82976d6
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -188,6 +188,7 @@ (define-module (gnu packages mail)
#:use-module (guix build-system meson)
#:use-module (guix build-system perl)
#:use-module (guix build-system python)
#:use-module (guix build-system pyproject)
#:use-module (guix build-system trivial)
#:use-module (srfi srfi-1)
#:use-module (ice-9 match))
@ -4039,16 +4040,20 @@ (define-public imapfilter
(define-public urlscan
(package
(name "urlscan")
(version "0.9.10")
(version "1.0.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "urlscan" version))
(sha256
(base32 "1ir6dxifkd8hv048p65jyz4wyg6ll002fzvbmajpdnvs6mvkj1md"))))
(build-system python-build-system)
(base32 "0rxqdrss34rgnfmbn8ab976dchjbz72wp4ywqrdib119a5xnhqzh"))))
(build-system pyproject-build-system)
(arguments
(list #:tests? #f)) ; No tests.
(propagated-inputs
(list python-urwid))
(native-inputs
(list python-hatch-vcs python-hatchling))
(home-page "https://github.com/firecat53/urlscan")
(synopsis "View/select the URLs in an email message or file")
(description