Added py3nvml

This commit is contained in:
Gerben Jan Dijkman 2023-06-13 00:08:46 +02:00
parent f0b011e52b
commit 0c0dd58586
3 changed files with 52 additions and 0 deletions

View File

@ -0,0 +1 @@
DIST py3nvml-0.2.7.tar.gz 58224 BLAKE2B 11f9689554092350a932f531d9a2aa09c7fdbb89e93102f48a2eb29ad8dddf34f772e0b08821b4d36ed01313486b5b2f1fb00761429b923608bff1c6c0ad3a21 SHA512 c2fbe8b44f5a4db187df2f1023c30ea0eff1a4320abd02f39df70ca428caa141b0040750c73bb21961bcab87262220e65c477d6507e9b86bf7bec59fbfdfcb75

View File

@ -0,0 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">Rx</remote-id>
<maintainer status="unknown">
<email>dag@brattli.net</email>
<name>Dag Brattli</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,36 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
inherit distutils-r1 virtualx
DESCRIPTION="Injector - Python dependency injection framework, inspired by Guice"
HOMEPAGE="http://reactivex.io https://pypi.org/project/py3nvml/"
SRC_URI="https://files.pythonhosted.org/packages/10/7e/fa282e456b87570d663ce97946b4dcb16850d4495ce4bd625a1a10c8ed56/py3nvml-0.2.7.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS=""
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest
src_test() {
virtx distutils-r1_src_test
}