mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
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.
This commit is contained in:
parent
bf2727c1b4
commit
525304e1b9
1 changed files with 11 additions and 8 deletions
|
@ -3517,20 +3517,23 @@ (define-public python-authheaders
|
|||
(define-public python-aiosmtpd
|
||||
(package
|
||||
(name "python-aiosmtpd")
|
||||
(version "1.2")
|
||||
(version "1.2.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "aiosmtpd" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1xdfk741pjmz1cm8dsi4n5vq4517i175rm94696m3f7kcgk7xsmp"))))
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/aio-libs/aiosmtpd")
|
||||
(commit version)))
|
||||
(sha256
|
||||
(base32 "14c30dm6jzxiblnsah53fdv68vqhxwvb9x0aq9bc4vcdas747vr7"))
|
||||
(file-name (git-file-name name version))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
'(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'delete-failing-test
|
||||
(add-after 'unpack 'delete-failing-tests
|
||||
(lambda _
|
||||
;; This test uses an expired certificate.
|
||||
(delete-file "aiosmtpd/tests/test_smtps.py")
|
||||
#t))
|
||||
(replace 'check
|
||||
|
|
Loading…
Reference in a new issue