blob: 86bd3a8ea73c762ab3429878574b5a36647e4d33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
SUMMARY = "Python bindings for interfacing with the Zstandard compression library"
DESCRIPTION = "This project provides Python bindings for interfacing with the \
Zstandard compression library. A C extension and CFFI interface \
are provided."
HOMEPAGE = "https://github.com/indygreg/python-zstandard"
BUGTRACKER = "https://github.com/indygreg/python-zstandard/issues"
LICENSE = "BSD-3-Clause"
LIC_FILES_CHKSUM = "file://LICENSE;md5=3ae87c50fd64b6f0942823686871e758"
DEPENDS = "python3-cffi"
RDEPENDS_${PN} = "\
libzstd (>= 1.4.0) \
python3-cffi \
"
inherit setuptools3 pypi
SRC_URI[sha256sum] = "7713e1179d162cf5c7906da876ec2ccb9c3a9dcbdffef0cc7f70c3667a205f0b"
# Because the pyproject.toml is still in development and it contains invalid
# requirements.
INSANE_SKIP += "pep517-backend"
|