mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-20 06:51:04 +08:00
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
85 lines
1.5 KiB
Nix
85 lines
1.5 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, ddt
|
|
, fetchFromGitHub
|
|
, importlib-metadata
|
|
, jsonschema
|
|
, lxml
|
|
, packageurl-python
|
|
, poetry-core
|
|
, pytestCheckHook
|
|
, python
|
|
, pythonOlder
|
|
, requirements-parser
|
|
, sortedcontainers
|
|
, setuptools
|
|
, toml
|
|
, types-setuptools
|
|
, types-toml
|
|
, xmldiff
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "cyclonedx-python-lib";
|
|
version = "3.1.5";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "CycloneDX";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-4lA8OdmvQD94jTeDf+Iz7ZyEQ9fZzCxnXQG9Ir8FKhk=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
importlib-metadata
|
|
packageurl-python
|
|
requirements-parser
|
|
setuptools
|
|
sortedcontainers
|
|
toml
|
|
types-setuptools
|
|
types-toml
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
ddt
|
|
jsonschema
|
|
lxml
|
|
pytestCheckHook
|
|
xmldiff
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"cyclonedx"
|
|
];
|
|
|
|
preCheck = ''
|
|
export PYTHONPATH=tests''${PYTHONPATH+:$PYTHONPATH}
|
|
'';
|
|
|
|
pytestFlagsArray = [
|
|
"tests/"
|
|
];
|
|
|
|
disabledTests = [
|
|
# These tests require network access.
|
|
"test_bom_v1_3_with_metadata_component"
|
|
"test_bom_v1_4_with_metadata_component"
|
|
];
|
|
|
|
meta = with lib; {
|
|
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/v${version}";
|
|
license = with licenses; [ asl20 ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|