diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-02-05 17:29:28 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-02-05 18:07:01 +0100 |
commit | 588eecee6c6ac8678e0a747450a243e4516bfcf5 (patch) | |
tree | 97261894a6402cbc6a622afddfd9aaf8f80f9cde /dev-python/mypy_extensions/mypy_extensions-0.4.4.ebuild | |
parent | dev-python/humanize: Bump to 4.6.0 (diff) | |
download | gentoo-588eecee6c6ac8678e0a747450a243e4516bfcf5.tar.gz gentoo-588eecee6c6ac8678e0a747450a243e4516bfcf5.tar.bz2 gentoo-588eecee6c6ac8678e0a747450a243e4516bfcf5.zip |
dev-python/mypy_extensions: Bump to 0.4.4
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/mypy_extensions/mypy_extensions-0.4.4.ebuild')
-rw-r--r-- | dev-python/mypy_extensions/mypy_extensions-0.4.4.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/dev-python/mypy_extensions/mypy_extensions-0.4.4.ebuild b/dev-python/mypy_extensions/mypy_extensions-0.4.4.ebuild new file mode 100644 index 000000000000..3fa95ff86e2a --- /dev/null +++ b/dev-python/mypy_extensions/mypy_extensions-0.4.4.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{9..11} pypy3 ) +DISTUTILS_USE_PEP517=setuptools + +inherit distutils-r1 + +DESCRIPTION="Optional static typing for Python" +HOMEPAGE=" + https://www.mypy-lang.org/ + https://github.com/python/mypy_extensions/ +" +SRC_URI=" + https://github.com/python/mypy_extensions/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos" + +distutils_enable_tests pytest + +EPYTEST_DESELECT=( + # This test assumes we get a TypeError, but that is no longer true in 3.11 + "tests/testextensions.py::TypedDictTests::test_typeddict_errors" +) + +python_test() { + epytest tests/*.py +} |