blob: bcebac600a05b22ac8d1c248621f5593b3fac962 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
lib4sbom,
}:
buildPythonPackage rec {
pname = "sbom2dot";
version = "0.3.2";
pyproject = true;
src = fetchFromGitHub {
owner = "anthonyharrison";
repo = "sbom2dot";
tag = "v${version}";
hash = "sha256-g6IAGZCLRVxF0f6JEcxNaAKWYlTDt0zYSchsz6hDgdg=";
};
build-system = [
setuptools
];
dependencies = [
lib4sbom
];
pythonImportsCheck = [
"sbom2dot"
];
meta = {
changelog = "https://github.com/anthonyharrison/sbom2dot/releases/tag/${src.tag}";
description = "Create a dependency graph of the components within a SBOM";
homepage = "https://github.com/anthonyharrison/sbom2dot";
license = lib.licenses.asl20;
mainProgram = "sbom2dot";
maintainers = [ ];
};
}
|