You've already forked macports-ports
mirror of
https://github.com/encounter/macports-ports.git
synced 2026-03-30 11:29:27 -07:00
8bc4475ff2
A small test runner library for Python testing.
40 lines
1.3 KiB
Tcl
40 lines
1.3 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-test-runner
|
|
version 0.7.0
|
|
revision 0
|
|
platforms darwin
|
|
license LGPL-3
|
|
maintainers nomaintainer
|
|
|
|
description A small test runner library for Python testing
|
|
long_description ${description}
|
|
|
|
checksums rmd160 9e74f160f7e4ad0611ad0adbb498083a46801608 \
|
|
sha256 b3b69019150910f0aaf9aaeaaf5c5fb8020799cccbdd13c199d4a3835e4d79db \
|
|
size 12297
|
|
|
|
homepage https://github.com/pytesting/${python.rootname}
|
|
|
|
# requires python36 or better
|
|
python.versions 36 37 38
|
|
|
|
if {${name} ne ${subport}} {
|
|
depends_build-append \
|
|
port:py${python.version}-setuptools
|
|
|
|
depends_lib-append \
|
|
port:py${python.version}-attr \
|
|
port:py${python.version}-benchexec \
|
|
port:py${python.version}-deprecated \
|
|
port:py${python.version}-pipfile \
|
|
port:py${python.version}-plumbum \
|
|
port:py${python.version}-pytesting-utils \
|
|
port:py${python.version}-virtualenv
|
|
|
|
livecheck.type none
|
|
}
|