You've already forked macports-ports
mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
34 lines
1.0 KiB
Tcl
34 lines
1.0 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-lru
|
||
version 2.3.0
|
||
revision 0
|
||
|
||
categories-append devel
|
||
license BSD
|
||
supported_archs noarch
|
||
platforms {darwin any}
|
||
maintainers nomaintainer
|
||
|
||
description A port of Python’s built-in functools.lru_cache function for asyncio
|
||
long_description {*}${description}
|
||
|
||
homepage https://github.com/aio-libs/async-lru
|
||
|
||
distname async_lru-${version}
|
||
|
||
checksums rmd160 0cd9d1533b18a9d3c7f8dec0ebda344ddea0b4c8 \
|
||
sha256 89bdb258a0140d7313cf8f4031d816a042202faa61d0ab310a0a538baa1c24b6 \
|
||
size 16332
|
||
|
||
python.versions 310 311 312 313 314
|
||
|
||
if {${name} ne ${subport}} {
|
||
if {${python.version} < 311} {
|
||
depends_lib-append port:py${python.version}-typing_extensions
|
||
}
|
||
}
|