gentoo/dev-python/rustworkx/rustworkx-0.17.1.ebuild
Michał Górny 605ecdee50
dev-python/rustworkx: Bump to 0.17.1
Signed-off-by: Michał Górny <mgorny@gentoo.org>
2025-08-13 10:07:36 +02:00

163 lines
3.1 KiB
Bash

# Copyright 2022-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_EXT=1
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{11..13} )
CRATES="
adler2@2.0.0
aho-corasick@1.1.3
allocator-api2@0.2.21
arbitrary@1.4.1
autocfg@1.4.0
bitflags@2.9.0
cc@1.2.18
cfg-if@1.0.0
crc32fast@1.4.2
crossbeam-deque@0.8.6
crossbeam-epoch@0.9.18
crossbeam-utils@0.8.21
derive_arbitrary@1.4.1
either@1.15.0
env_logger@0.8.4
equivalent@1.0.2
fixedbitset@0.5.7
flate2@1.1.1
foldhash@0.1.5
getrandom@0.2.15
getrandom@0.3.2
hashbrown@0.15.2
heck@0.5.0
hermit-abi@0.3.9
indexmap@2.9.0
indoc@2.0.6
itertools@0.13.0
itertools@0.14.0
itoa@1.0.15
jobserver@0.1.33
libc@0.2.171
libfuzzer-sys@0.4.9
libm@0.2.15
log@0.4.27
matrixmultiply@0.3.9
memchr@2.7.4
memoffset@0.9.1
miniz_oxide@0.8.7
ndarray-stats@0.6.0
ndarray@0.16.1
noisy_float@0.2.0
num-bigint@0.4.6
num-complex@0.4.6
num-integer@0.1.46
num-traits@0.2.19
num_cpus@1.16.0
numpy@0.24.0
once_cell@1.21.3
petgraph@0.8.1
portable-atomic-util@0.2.4
portable-atomic@1.11.0
ppv-lite86@0.2.21
priority-queue@2.3.1
proc-macro2@1.0.94
pyo3-build-config@0.24.1
pyo3-ffi@0.24.1
pyo3-macros-backend@0.24.1
pyo3-macros@0.24.1
pyo3@0.24.1
quick-xml@0.37.4
quickcheck@1.0.3
quickcheck_macros@1.1.0
quote@1.0.40
r-efi@5.2.0
rand@0.8.5
rand@0.9.1
rand_chacha@0.3.1
rand_chacha@0.9.0
rand_core@0.6.4
rand_core@0.9.3
rand_distr@0.5.1
rand_pcg@0.9.0
rawpointer@0.2.1
rayon-cond@0.4.0
rayon-core@1.12.1
rayon@1.10.0
regex-automata@0.4.9
regex-syntax@0.8.5
regex@1.11.1
rustc-hash@2.1.1
ryu@1.0.20
serde@1.0.219
serde_derive@1.0.219
serde_json@1.0.140
shlex@1.3.0
smallvec@1.15.0
sprs@0.11.3
syn@2.0.100
target-lexicon@0.13.2
unicode-ident@1.0.18
unindent@0.2.4
wasi@0.11.0+wasi-snapshot-preview1
wasi@0.14.2+wasi-0.2.4
wit-bindgen-rt@0.39.0
zerocopy-derive@0.8.24
zerocopy@0.8.24
"
inherit cargo distutils-r1
DESCRIPTION="A high performance Python graph library implemented in Rust"
HOMEPAGE="
https://github.com/Qiskit/rustworkx/
https://pypi.org/project/rustworkx/
"
SRC_URI="
https://github.com/Qiskit/rustworkx/archive/${PV}.tar.gz
-> ${P}.gh.tar.gz
${CARGO_CRATE_URIS}
"
LICENSE="Apache-2.0"
# Dependent crate licenses
LICENSE+="
Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD-2 MIT UoI-NCSA
Unicode-3.0 ZLIB
|| ( LGPL-3+ MPL-2.0 )
"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
>=dev-python/numpy-1.16.0[${PYTHON_USEDEP}]
"
BDEPEND="
dev-python/setuptools-rust[${PYTHON_USEDEP}]
test? (
dev-python/fixtures[${PYTHON_USEDEP}]
dev-python/graphviz[${PYTHON_USEDEP}]
>=dev-python/networkx-2.5[${PYTHON_USEDEP}]
dev-python/stestr[${PYTHON_USEDEP}]
>=dev-python/testtools-2.5.0[${PYTHON_USEDEP}]
media-gfx/graphviz[gts]
)
"
# Libraries built with rust do not use CFLAGS and LDFLAGS.
QA_FLAGS_IGNORED="usr/lib.*/py.*/site-packages/rustworkx/rustworkx.*\\.so"
EPYTEST_PLUGINS=()
EPYTEST_XDIST=1
distutils_enable_tests pytest
python_test() {
local EPYTEST_DESELECT=(
# TODO: hangs
tests/retworkx_backwards_compat/visualization/test_mpl.py
tests/rustworkx_tests/visualization/test_mpl.py
)
rm -rf rustworkx || die
epytest
}