python3-zstandard_0.25.0.bb 824 B

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