blob: 0eaa362bff7e2c88698464416bccd894f8e8481c (
about) (
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
44
45
46
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
csaf-tool,
lib4sbom,
packageurl-python,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "lib4vex";
version = "0.2.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "anthonyharrison";
repo = "lib4vex";
tag = "v${version}";
hash = "sha256-mR9ZpJDC2O04js3Kd/8qlg4Ds/jy2CmpTywRVYqmnQw=";
};
build-system = [ setuptools ];
dependencies = [
csaf-tool
lib4sbom
packageurl-python
];
# has no tests
doCheck = false;
pythonImportsCheck = [ "lib4vex" ];
meta = with lib; {
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 = licenses.asl20;
maintainers = with maintainers; [ teatwig ];
};
}
|