diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-04-17 09:55:18 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-04-19 20:12:17 -0400 |
commit | 718b4687c93b5ea5c92238807cf0fbd2bf49d70d (patch) | |
tree | 2485177fba6475189f191d3fc93ba9a416a2363f | |
parent | e27acc6fc710014505766566d1676d10030d8fee (diff) | |
download | guix-718b4687c93b5ea5c92238807cf0fbd2bf49d70d.tar guix-718b4687c93b5ea5c92238807cf0fbd2bf49d70d.tar.gz |
gnu: python-aiosignal: Update to 1.3.1.
* gnu/packages/python-web.scm (python-aiosignal): Update to 1.3.1.
[build-system]: Use pyproject-build-system.
[arguments]: Remove #:phases. Add #:test-flags.
[native-inputs]: Add python-pytest-cov.
-rw-r--r-- | gnu/packages/python-web.scm | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index fca04e91c4..8afdf1a98c 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -290,23 +290,17 @@ by calling @code{FrozenList.freeze}.") (define-public python-aiosignal (package (name "python-aiosignal") - (version "1.2.0") + (version "1.3.1") (source (origin (method url-fetch) (uri (pypi-uri "aiosignal" version)) (sha256 - (base32 "1wkxbdgw07ay8yzx3pg1jcm46p3d21rfb5g4k17ysz3vdkdngvbq")))) - (build-system python-build-system) - (arguments - '(#:phases - (modify-phases %standard-phases - (replace 'check - (lambda* (#:key tests? #:allow-other-keys) - (when tests? - (invoke "pytest" "tests"))))))) + (base32 "1z4cnqww6j0xl6f3vx2r6kfv1hdny1pnlll7difvfj8nbvhrdkal")))) + (build-system pyproject-build-system) + (arguments (list #:test-flags #~(list "tests"))) (propagated-inputs (list python-frozenlist)) - (native-inputs (list python-pytest python-pytest-asyncio)) + (native-inputs (list python-pytest python-pytest-asyncio python-pytest-cov)) (home-page "https://github.com/aio-libs/aiosignal") (synopsis "Callback manager for Python @code{asyncio} projects") (description "This Python module provides @code{Signal}, an abstraction to |