You've already forked macports-ports
mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
41 lines
1.4 KiB
Tcl
41 lines
1.4 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-rich
|
|
version 14.2.0
|
|
revision 0
|
|
|
|
license MIT
|
|
supported_archs noarch
|
|
platforms {darwin any}
|
|
maintainers {@harens harens} openmaintainer
|
|
|
|
description Python library for rich text and beautiful formatting \
|
|
in the terminal
|
|
long_description {*}${description}. The Rich API makes it easy to add color \
|
|
and style to terminal output. Rich can also render pretty tables, \
|
|
progress bars, markdown, syntax highlighted source code, tracebacks, \
|
|
and more out of the box.
|
|
|
|
homepage https://rich.readthedocs.io/en/latest/
|
|
|
|
checksums rmd160 16f5bf3f370aa7e0c0dc3debb96dbe010354ab13 \
|
|
sha256 73ff50c7c0c1c77c8243079283f4edb376f0f6442433aecb8ce7e6d0b92d1fe4 \
|
|
size 219990
|
|
|
|
python.versions 39 310 311 312 313 314
|
|
|
|
python.pep517_backend poetry
|
|
|
|
if {${name} ne ${subport}} {
|
|
depends_run-append port:py${python.version}-markdown-it-py \
|
|
port:py${python.version}-pygments
|
|
|
|
test.run yes
|
|
python.test_framework
|
|
test.cmd ${python.bin}
|
|
test.target -m rich
|
|
}
|