Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/nbclient/
Date: Thu, 01 Sep 2022 19:42:17
Message-Id: 1662061316.edae6ab90989e45b335bf5424c0ecceda760d384.arthurzam@gentoo
1 commit: edae6ab90989e45b335bf5424c0ecceda760d384
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 1 19:31:31 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 1 19:41:56 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edae6ab9
7
8 dev-python/nbclient: add 0.6.7
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/nbclient/Manifest | 1 +
13 dev-python/nbclient/nbclient-0.6.7.ebuild | 46 +++++++++++++++++++++++++++++++
14 2 files changed, 47 insertions(+)
15
16 diff --git a/dev-python/nbclient/Manifest b/dev-python/nbclient/Manifest
17 index d2413da27530..d66140a4798e 100644
18 --- a/dev-python/nbclient/Manifest
19 +++ b/dev-python/nbclient/Manifest
20 @@ -1 +1,2 @@
21 DIST nbclient-0.6.6.gh.tar.gz 78247 BLAKE2B 06793fe792dcb8606d74e85a7a5c4d8f3ba850f81191bf205706e404e67bfe3d6914dff5790c5d6dca62d7797482518b5d87b06da34f06a5cb44a8a0ff6855e4 SHA512 8ca0333a47920994d8afe7c8943b366d4669e7ad91daab1a36c57480b70e51dfd05c7cd44acd2a2005b8c0a6b41c4fe6be0fc22b75a3efe291e9c35dd334643c
22 +DIST nbclient-0.6.7.gh.tar.gz 78345 BLAKE2B dba9c98ab7d0b65470268dabc5d7dbee65e9c800252e61de6e9fe28a59a2da5c9b2046b7835468a8807445bb657152071cad7a28c717049d5762c13634175e34 SHA512 67fc7a6685df783a0d3af728e18ad2ff7a46d17c66a8e23f651a4d329896ee84d7dda8fcc62c94e277a742c74fe51b9f15f415add747a346ddf3d29056382f23
23
24 diff --git a/dev-python/nbclient/nbclient-0.6.7.ebuild b/dev-python/nbclient/nbclient-0.6.7.ebuild
25 new file mode 100644
26 index 000000000000..cc41ec1e5d49
27 --- /dev/null
28 +++ b/dev-python/nbclient/nbclient-0.6.7.ebuild
29 @@ -0,0 +1,46 @@
30 +# Copyright 2020-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DISTUTILS_USE_PEP517=setuptools
36 +PYTHON_COMPAT=( python3_{8..10} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="A client library for executing Jupyter notebooks"
41 +HOMEPAGE="
42 + https://nbclient.readthedocs.io/en/latest/
43 + https://github.com/jupyter/nbclient/
44 + https://pypi.org/project/nbclient/
45 +"
46 +SRC_URI="
47 + https://github.com/jupyter/nbclient/archive/v${PV}.tar.gz
48 + -> ${P}.gh.tar.gz
49 +"
50 +
51 +LICENSE="BSD"
52 +SLOT="0"
53 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
54 +
55 +RDEPEND="
56 + >=dev-python/jupyter_client-6.1.5[${PYTHON_USEDEP}]
57 + >=dev-python/nbformat-5.0[${PYTHON_USEDEP}]
58 + dev-python/nest_asyncio[${PYTHON_USEDEP}]
59 + >=dev-python/traitlets-5.2.2[${PYTHON_USEDEP}]
60 +"
61 +BDEPEND="
62 + test? (
63 + dev-python/ipython[${PYTHON_USEDEP}]
64 + dev-python/ipykernel[${PYTHON_USEDEP}]
65 + dev-python/ipywidgets[${PYTHON_USEDEP}]
66 + dev-python/testpath[${PYTHON_USEDEP}]
67 + dev-python/xmltodict[${PYTHON_USEDEP}]
68 + )
69 +"
70 +
71 +distutils_enable_tests pytest
72 +
73 +EPYTEST_DESELECT=(
74 + 'nbclient/tests/test_client.py::test_run_all_notebooks[Interrupt.ipynb-opts6]'
75 +)