You've already forked macports-ports
mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
33 lines
1.2 KiB
Tcl
33 lines
1.2 KiB
Tcl
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
|
|
|
|
PortSystem 1.0
|
|
PortGroup python 1.0
|
|
|
|
name py-async-timeout
|
|
version 4.0.3
|
|
categories-append devel
|
|
license Apache-2
|
|
supported_archs noarch
|
|
platforms {darwin any}
|
|
|
|
python.versions 39 310 311 312 313
|
|
|
|
maintainers {ipglider.org:miguel @ipglider} openmaintainer
|
|
|
|
description asyncio-compatible timeout context manager.
|
|
long_description asyncio-compatible is useful in cases when you want to \
|
|
apply timeout logic around block of code or in cases when \
|
|
asyncio.wait_for() is not suitable. Also it's much faster \
|
|
than asyncio.wait_for() because timeout doesn't create a \
|
|
new task.
|
|
|
|
homepage https://github.com/aio-libs/async-timeout
|
|
|
|
checksums rmd160 dd25bbfdca3ea2d1fdc654822bc2d2eb5a1f37b0 \
|
|
sha256 4640d96be84d82d02ed59ea2b7105a0f7b33abe8703703cd0ab0bf87c427522f \
|
|
size 8345
|
|
|
|
if {${name} ne ${subport}} {
|
|
depends_lib-append port:py${python.version}-typing_extensions
|
|
}
|