diff options
| author | rillig <rillig@pkgsrc.org> | 2022-08-25 19:51:59 +0000 |
|---|---|---|
| committer | rillig <rillig@pkgsrc.org> | 2022-08-25 19:51:59 +0000 |
| commit | cbb8e7ca98aea1b22c90e3d61619b421004e2a4f (patch) | |
| tree | 0b0827622ee251544213f42af638f39768f48588 /pkgtools/url2pkg/files/python/setuptools/command | |
| parent | 91fa8889e1a56d4abed5b6ea574f3708503d0f7e (diff) | |
| download | pkgsrc-cbb8e7ca98aea1b22c90e3d61619b421004e2a4f.tar.gz | |
pkgtools/url2pkg: support Python with setuptools.command.test
Needed for www/py-pook 1.0.2.
Diffstat (limited to 'pkgtools/url2pkg/files/python/setuptools/command')
| -rw-r--r-- | pkgtools/url2pkg/files/python/setuptools/command/test.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/pkgtools/url2pkg/files/python/setuptools/command/test.py b/pkgtools/url2pkg/files/python/setuptools/command/test.py new file mode 100644 index 00000000000..1060209686a --- /dev/null +++ b/pkgtools/url2pkg/files/python/setuptools/command/test.py @@ -0,0 +1,13 @@ +# $NetBSD: test.py,v 1.1 2022/08/25 19:51:59 rillig Exp $ +# +# Fake implementation of setuptools.command.test. +# +# https://github.com/pypa/setuptools/blob/main/setuptools/command/test.py + +# used by pkgsrc package www/py-pook 1.0.2 + +from setuptools import Command + + +class test(Command): + pass |
