mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-09-01 16:10:25 +00:00
Changelog: ========== - build(deps): bump actions/checkout from 6 to 7 - build(deps): bump actions/setup-python from 6 to 7 - build(deps): bump codecov/codecov-action from 6 to 7 - fix: block distribution fields on default galaxy clusters - Add no_sightings option to get_event - Fix data reference in galaxy cluster fork request - fix: [openioc] require both search-contexts before merging a composite - feat: Add fetchFromAllFeeds - make build_complex_query a staticmethod - build(deps): bump github/codeql-action from 4 to 4.37.3 - build(deps): bump github/codeql-action from 4.37.3 to 4.37.4 - fix: accept datetime objects for MISPEvent timestamps in from_dict - fix: Support in-memory STIX uploads - fix: Correct deleted search parameter type - build(deps): bump github/codeql-action from 4.37.4 to 4.37.6 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
23 lines
613 B
BlitzBasic
23 lines
613 B
BlitzBasic
DESCRIPTION = "Python API for MISP"
|
|
HOMEPAGE = "https://github.com/MISP/PyMISP"
|
|
LICENSE = "BSD-2-Clause"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=a3639cf5780f71b125d3e9d1dc127c20"
|
|
|
|
SRC_URI[sha256sum] = "cbf42d6753e788ec4eabeb3b4cfdece12faf36d43551869d4b7cec2329ee9aaf"
|
|
|
|
inherit python_poetry_core pypi
|
|
|
|
RDEPENDS:${PN} += " \
|
|
python3-dateutil \
|
|
python3-json \
|
|
python3-jsonschema \
|
|
python3-requests \
|
|
python3-six \
|
|
python3-deprecated \
|
|
python3-wrapt \
|
|
"
|
|
|
|
# Fixes: python3-pymisp requires /bin/bash, but no
|
|
# providers found in RDEPENDS:python3-pymisp? [file-rdep]
|
|
RDEPENDS:${PN} += "bash"
|