~ruther/guix-local

4c0dbecfcfe7cd4f16ac06bd24e4da27adb98cef — Ricardo Wurmus 1 year, 3 months ago d918e0e
gnu: python-trio-typing: Update to 0.10.0.

* gnu/packages/python-xyz.scm (python-trio-typing): Update to 0.10.0.
[native-inputs]: Remove python-attrs.
[propagated-inputs]: Remove python-mypy; add python-async-generator,
python-importlib-metadata, and python-packaging.

Change-Id: Ie8171ed0bdacb15f083c1c430162a8b4f28965f9
1 files changed, 8 insertions(+), 5 deletions(-)

M gnu/packages/python-xyz.scm
M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +8 -5
@@ 30528,18 30528,21 @@ programs that do multiple things at the same time with parallelized I/O.")
(define-public python-trio-typing
  (package
    (name "python-trio-typing")
    (version "0.8.0")
    (version "0.10.0")
    (source
     (origin
       (method url-fetch)
       (uri (pypi-uri "trio-typing" version))
       (sha256
        (base32 "15wa66cs165wawh4pi808ac43n67b8jqddi5ppdcbkj5gfi68hpi"))))
        (base32 "1hvsj3w500i33ykfgh3sfkjnxhxf05incx131smshlkd562fcph6"))))
    (build-system pyproject-build-system)
    (native-inputs (list python-attrs python-pytest python-setuptools
                         python-wheel))
    (native-inputs (list python-pytest python-setuptools python-wheel))
    (propagated-inputs
     (list python-mypy python-mypy-extensions python-trio
     (list python-async-generator
           python-importlib-metadata
           python-mypy-extensions
           python-packaging
           python-trio
           python-typing-extensions))
    (home-page "https://github.com/python-trio/trio-typing")
    (synopsis "Static type checking support for Trio and related projects")