diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-11-26 15:33:06 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-13 20:28:36 +0000 |
commit | 7938fe7662a1f21c2eaa68cf3b2a31ba1bb3cc44 (patch) | |
tree | 8fa4a0cc2c9f2d7baf3a914a187ea7c4d21f5c5a | |
parent | 5dfe277d0ad4f7f8447fccd6cf72cc06858187fb (diff) | |
download | guix-7938fe7662a1f21c2eaa68cf3b2a31ba1bb3cc44.tar.gz guix-7938fe7662a1f21c2eaa68cf3b2a31ba1bb3cc44.zip |
gnu: python-aiofiles: Fix indentation.
* gnu/packages/python-xyz.scm (python-aiofiles) Fix indentation.
Change-Id: Iaed80a2533881d8c487b4459041f20fd6e4ad68d
-rw-r--r-- | gnu/packages/python-xyz.scm | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 2c3d432e5b..a085c4ebf6 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -34011,22 +34011,22 @@ process.") (name "python-aiofiles") (version "24.1.0") (source - (origin - (method url-fetch) - (uri (pypi-uri "aiofiles" version)) - (sha256 - (base32 - "0v0namryb6acj9bkic5rcgbnb36njj601ws85q60z0d3wp4pb812")))) + (origin + (method url-fetch) + (uri (pypi-uri "aiofiles" version)) + (sha256 + (base32 "0v0namryb6acj9bkic5rcgbnb36njj601ws85q60z0d3wp4pb812")))) (build-system pyproject-build-system) (native-inputs - (list python-hatchling - python-hatch-vcs + (list python-hatch-vcs + python-hatchling python-pytest python-pytest-asyncio)) (home-page "https://github.com/Tinche/aiofiles") (synopsis "File support for @code{asyncio}") - (description "@code{python-aiofiles} is a library for handling local -disk files in asyncio applications.") + (description + "@code{python-aiofiles} is a library for handling local disk files in +asyncio applications.") (license license:asl2.0))) (define-public python-pyre-extensions |