nixpkgs/pkgs/development/python-modules/cyclonedx-python-lib/default.nix
Ihar Hrachyshka 567e8dfd8e
treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

100 lines
2 KiB
Nix

{
lib,
buildPythonPackage,
ddt,
fetchFromGitHub,
importlib-metadata,
jsonschema,
license-expression,
lxml,
packageurl-python,
py-serializable,
poetry-core,
pytestCheckHook,
requirements-parser,
sortedcontainers,
setuptools,
toml,
types-setuptools,
types-toml,
xmldiff,
}:
buildPythonPackage rec {
pname = "cyclonedx-python-lib";
version = "11.6.0";
pyproject = true;
src = fetchFromGitHub {
owner = "CycloneDX";
repo = "cyclonedx-python-lib";
tag = "v${version}";
hash = "sha256-LnXunfYUz76XIHEXhaFJymBMFln8sIH0yxCodRmKdY0=";
};
pythonRelaxDeps = [ "py-serializable" ];
build-system = [ poetry-core ];
dependencies = [
importlib-metadata
license-expression
packageurl-python
requirements-parser
setuptools
sortedcontainers
toml
py-serializable
types-setuptools
types-toml
];
optional-dependencies = {
validation = [
jsonschema
lxml
];
json-validation = [
jsonschema
];
xml-validation = [
lxml
];
};
nativeCheckInputs = [
ddt
pytestCheckHook
xmldiff
]
++ lib.concatAttrValues optional-dependencies;
pythonImportsCheck = [ "cyclonedx" ];
preCheck = ''
export PYTHONPATH=tests''${PYTHONPATH+:$PYTHONPATH}
'';
enabledTestPaths = [ "tests/" ];
disabledTests = [
# These tests require network access
"test_bom_v1_3_with_metadata_component"
"test_bom_v1_4_with_metadata_component"
# AssertionError: <ValidationError: "{'algorithm': 'ES256', ...
"TestJson"
];
disabledTestPaths = [
# Test failures seem py-serializable related
"tests/test_output_xml.py"
];
meta = {
description = "Python library for generating CycloneDX SBOMs";
homepage = "https://github.com/CycloneDX/cyclonedx-python-lib";
changelog = "https://github.com/CycloneDX/cyclonedx-python-lib/releases/tag/${src.tag}";
license = with lib.licenses; [ asl20 ];
maintainers = with lib.maintainers; [ fab ];
};
}