blob: b630c3939eabb55f5cd1dadb4ed618b084d4afb4 (
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
42
43
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
csaf-tool,
lib4sbom,
packageurl-python,
setuptools,
}:
buildPythonPackage rec {
pname = "lib4vex";
version = "0.2.1";
pyproject = true;
src = fetchFromGitHub {
owner = "anthonyharrison";
repo = "lib4vex";
tag = "v${version}";
hash = "sha256-n8bWhYwKtJ4fH5VtQUfQqCNuEJj8I8S6eLkm+2SKqL8=";
};
build-system = [ setuptools ];
dependencies = [
csaf-tool
lib4sbom
packageurl-python
];
# has no tests
doCheck = false;
pythonImportsCheck = [ "lib4vex" ];
meta = {
description = "Library to ingest and generate VEX documents";
homepage = "https://github.com/anthonyharrison/lib4vex";
changelog = "https://github.com/anthonyharrison/lib4vex/releases/tag/${src.tag}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ teatwig ];
};
}
|