~ruther/guix-local

eb0f35e16db46642550cddca9f13c7c39f6c2da5 — Troy Figiel 2 years ago 68763a0
gnu: hypercorn: Reformat with guix style.

* gnu/packages/python-web.scm (hypercorn): Reformat with guix style.
1 files changed, 22 insertions(+), 24 deletions(-)

M gnu/packages/python-web.scm
M gnu/packages/python-web.scm => gnu/packages/python-web.scm +22 -24
@@ 2380,32 2380,30 @@ RFC6455, regardless of your programming paradigm.")
  (package
    (name "hypercorn")
    (version "0.14.4")
    (source (origin
              (method git-fetch) ;PyPI does not have tests
              (uri (git-reference
                    (url "https://github.com/pgjones/hypercorn")
                    (commit version)))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "0zyf5b8959sd12ycmqzvsb8746i3gn76rz55gxvix5cwj672m7yx"))))
    (source
     (origin
       (method git-fetch) ;PyPI does not have tests
       (uri (git-reference
             (url "https://github.com/pgjones/hypercorn")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32 "0zyf5b8959sd12ycmqzvsb8746i3gn76rz55gxvix5cwj672m7yx"))))
    (build-system pyproject-build-system)
    ;; Propagate because Hypercorn also exposes functionality over a module.
    (propagated-inputs
     (list python-exceptiongroup
           python-h11
           python-h2
           python-priority
           python-tomli
           python-wsproto))
    (native-inputs
     (list python-hypothesis
           python-poetry-core
           python-pytest
           python-pytest-asyncio
           python-pytest-cov
           python-pytest-trio
           python-trio))
    (propagated-inputs (list python-exceptiongroup
                             python-h11
                             python-h2
                             python-priority
                             python-tomli
                             python-wsproto))
    (native-inputs (list python-hypothesis
                         python-poetry-core
                         python-pytest
                         python-pytest-asyncio
                         python-pytest-cov
                         python-pytest-trio
                         python-trio))
    (home-page "https://gitlab.com/pgjones/hypercorn/")
    (synopsis "ASGI Server based on Hyper libraries")
    (description