blob: 73ba4a3edc40b8c16f1015a8ad7963cd17364007 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_EXT=1
DISTUTILS_USE_PEP517=meson-python
PYTHON_COMPAT=( pypy3 python3_{10..13} )
inherit distutils-r1 pypi
DESCRIPTION="Streaming-capable SipHash-1-3 and SipHash-2-4 Implementation"
HOMEPAGE="
https://github.com/dnicolodi/python-siphash24/
https://pypi.org/project/siphash24/
"
LICENSE="|| ( Apache-2.0 LGPL-2.1+ )"
SLOT="0"
KEYWORDS="amd64 arm64 ~riscv"
DEPEND="
dev-libs/c-siphash
"
BDEPEND="
>=dev-python/cython-3.0.2[${PYTHON_USEDEP}]
"
distutils_enable_tests unittest
|