fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
73 lines
1.4 KiB
Nix
73 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
beartype,
|
|
buildPythonPackage,
|
|
click,
|
|
fetchFromGitHub,
|
|
license-expression,
|
|
ply,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
pyyaml,
|
|
rdflib,
|
|
semantic-version,
|
|
setuptools,
|
|
setuptools-scm,
|
|
uritools,
|
|
xmltodict,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "spdx-tools";
|
|
version = "0.8.2";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "spdx";
|
|
repo = "tools-python";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-KB+tfuz0ZnoQcMX3H+IZXjcmPZ4x2ecl8ofz1/3r0/8=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
setuptools-scm
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
beartype
|
|
click
|
|
license-expression
|
|
ply
|
|
pyyaml
|
|
rdflib
|
|
semantic-version
|
|
uritools
|
|
xmltodict
|
|
];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "spdx_tools.spdx" ];
|
|
|
|
disabledTestPaths = [
|
|
# Test depends on the currently not packaged pyshacl module
|
|
"tests/spdx3/validation/json_ld/test_shacl_validation.py"
|
|
];
|
|
|
|
disabledTests = [
|
|
# Missing files
|
|
"test_spdx2_convert_to_spdx3"
|
|
"test_json_writer"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "SPDX parser and tools";
|
|
homepage = "https://github.com/spdx/tools-python";
|
|
changelog = "https://github.com/spdx/tools-python/blob/v${version}/CHANGELOG.md";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|