summaryrefslogtreecommitdiff
path: root/dev-python/patsy/patsy-1.0.1.ebuild
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2024-11-13 17:48:25 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2024-11-13 17:48:25 +0000
commita6cbb3d12ad6754a4197f1ef2917998b377a081c (patch)
treebe17cb27307bc189b46788b9ba10aad3dd3c7a55 /dev-python/patsy/patsy-1.0.1.ebuild
parent24efa26a9866c0db03c927d97356758906dcc067 (diff)
downloadbaldeagleos-repo-a6cbb3d12ad6754a4197f1ef2917998b377a081c.tar.gz
baldeagleos-repo-a6cbb3d12ad6754a4197f1ef2917998b377a081c.tar.xz
baldeagleos-repo-a6cbb3d12ad6754a4197f1ef2917998b377a081c.zip
Adding metadata
Diffstat (limited to 'dev-python/patsy/patsy-1.0.1.ebuild')
-rw-r--r--dev-python/patsy/patsy-1.0.1.ebuild34
1 files changed, 34 insertions, 0 deletions
diff --git a/dev-python/patsy/patsy-1.0.1.ebuild b/dev-python/patsy/patsy-1.0.1.ebuild
new file mode 100644
index 000000000000..4d61e76e5d96
--- /dev/null
+++ b/dev-python/patsy/patsy-1.0.1.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9,10,11,12,13} pypy3 )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Python module to describe statistical models and design matrices"
+HOMEPAGE="
+ https://patsy.readthedocs.io/en/latest/index.html
+ https://github.com/pydata/patsy/
+ https://pypi.org/project/patsy/
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+
+RDEPEND="
+ dev-python/numpy[${PYTHON_USEDEP}]
+ !hppa? (
+ dev-python/scipy[${PYTHON_USEDEP}]
+ )
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+ local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+ epytest
+}