gnu: python-aiosmtpd: Update to 1.2.1.
* gnu/packages/mail.scm (python-aiosmtpd): Update to 1.2.1. [source]: Use GIT-FETCH and GIT-FILE-NAME.master
parent
bf2727c1b4
commit
525304e1b9
|
@ -3517,20 +3517,23 @@ DKIM and ARC sign messages and output the corresponding signature headers.")
|
||||||
(define-public python-aiosmtpd
|
(define-public python-aiosmtpd
|
||||||
(package
|
(package
|
||||||
(name "python-aiosmtpd")
|
(name "python-aiosmtpd")
|
||||||
(version "1.2")
|
(version "1.2.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (pypi-uri "aiosmtpd" version))
|
(uri (git-reference
|
||||||
|
(url "https://github.com/aio-libs/aiosmtpd")
|
||||||
|
(commit version)))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "14c30dm6jzxiblnsah53fdv68vqhxwvb9x0aq9bc4vcdas747vr7"))
|
||||||
"1xdfk741pjmz1cm8dsi4n5vq4517i175rm94696m3f7kcgk7xsmp"))))
|
(file-name (git-file-name name version))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases
|
'(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'delete-failing-test
|
(add-after 'unpack 'delete-failing-tests
|
||||||
(lambda _
|
(lambda _
|
||||||
|
;; This test uses an expired certificate.
|
||||||
(delete-file "aiosmtpd/tests/test_smtps.py")
|
(delete-file "aiosmtpd/tests/test_smtps.py")
|
||||||
#t))
|
#t))
|
||||||
(replace 'check
|
(replace 'check
|
||||||
|
|
Reference in New Issue