2021-10-28 06:52:43 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchFromGitHub
|
|
|
|
, importlib-metadata
|
2022-01-13 20:06:32 +00:00
|
|
|
, jsonschema
|
|
|
|
, lxml
|
2021-10-28 06:52:43 +00:00
|
|
|
, packageurl-python
|
|
|
|
, poetry-core
|
2022-04-27 09:35:20 +00:00
|
|
|
, python
|
2021-10-28 06:52:43 +00:00
|
|
|
, pythonOlder
|
|
|
|
, requirements-parser
|
2022-06-16 17:23:12 +00:00
|
|
|
, sortedcontainers
|
2021-10-28 06:52:43 +00:00
|
|
|
, setuptools
|
|
|
|
, toml
|
2021-12-06 16:07:01 +00:00
|
|
|
, types-setuptools
|
|
|
|
, types-toml
|
2022-04-27 09:35:20 +00:00
|
|
|
, xmldiff
|
2021-10-28 06:52:43 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "cyclonedx-python-lib";
|
2022-06-26 10:26:21 +00:00
|
|
|
version = "2.6.0";
|
2021-10-28 06:52:43 +00:00
|
|
|
format = "pyproject";
|
|
|
|
|
2022-04-27 09:35:20 +00:00
|
|
|
disabled = pythonOlder "3.9";
|
2021-10-28 06:52:43 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "CycloneDX";
|
|
|
|
repo = pname;
|
2022-04-27 09:35:20 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
2022-06-26 10:26:21 +00:00
|
|
|
hash = "sha256-UM5z8FEu+Pua/LToraGh8N6V3ujUnu4F6lJec+4cUg4=";
|
2021-10-28 06:52:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
poetry-core
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
importlib-metadata
|
|
|
|
packageurl-python
|
|
|
|
requirements-parser
|
|
|
|
setuptools
|
2022-06-16 17:23:12 +00:00
|
|
|
sortedcontainers
|
2021-10-28 06:52:43 +00:00
|
|
|
toml
|
2021-12-06 16:07:01 +00:00
|
|
|
types-setuptools
|
|
|
|
types-toml
|
2021-10-28 06:52:43 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
checkInputs = [
|
2022-01-13 20:06:32 +00:00
|
|
|
jsonschema
|
|
|
|
lxml
|
2022-04-27 09:35:20 +00:00
|
|
|
xmldiff
|
2021-10-28 06:52:43 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
pythonImportsCheck = [
|
|
|
|
"cyclonedx"
|
|
|
|
];
|
|
|
|
|
2022-04-27 09:35:20 +00:00
|
|
|
checkPhase = ''
|
|
|
|
runHook preCheck
|
|
|
|
# Tests require network access
|
|
|
|
rm tests/test_output_json.py
|
|
|
|
${python.interpreter} -m unittest discover -s tests -v
|
|
|
|
runHook postCheck
|
|
|
|
'';
|
|
|
|
|
2021-10-28 06:52:43 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Python library for generating CycloneDX SBOMs";
|
|
|
|
homepage = "https://github.com/CycloneDX/cyclonedx-python-lib";
|
|
|
|
license = with licenses; [ asl20 ];
|
|
|
|
maintainers = with maintainers; [ fab ];
|
|
|
|
};
|
|
|
|
}
|