chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / vu / vunnel / package.nix
blob5543834ea5a6302b32870ea67e11c6f56409a6f5
2   lib,
3   fetchFromGitHub,
4   git,
5   python3,
6 }:
8 python3.pkgs.buildPythonApplication rec {
9   pname = "vunnel";
10   version = "0.28.0";
11   pyproject = true;
13   src = fetchFromGitHub {
14     owner = "anchore";
15     repo = "vunnel";
16     rev = "refs/tags/v${version}";
17     hash = "sha256-KemiM+dCLSU3a6IIbI9VKtaIeY4SVcHsuE9QwZtzNxU=";
18   };
20   pythonRelaxDeps = [
21     "defusedxml"
22     "ijson"
23     "sqlalchemy"
24     "xsdata"
25   ];
27   build-system = with python3.pkgs; [
28     poetry-core
29     poetry-dynamic-versioning
30   ];
32   dependencies = with python3.pkgs; [
33     click
34     colorlog
35     cvss
36     defusedxml
37     ijson
38     importlib-metadata
39     iso8601
40     lxml
41     mashumaro
42     mergedeep
43     orjson
44     pytest-snapshot
45     python-dateutil
46     pyyaml
47     requests
48     sqlalchemy
49     xsdata
50     xxhash
51     zstandard
52   ];
54   nativeCheckInputs =
55     [ git ]
56     ++ (with python3.pkgs; [
57       jsonschema
58       pytest-mock
59       pytest-unordered
60       pytestCheckHook
61     ]);
63   pythonImportsCheck = [ "vunnel" ];
65   disabledTests = [
66     # Compare output
67     "test_status"
68     # TypeError
69     "test_parser"
70   ];
72   meta = with lib; {
73     description = "Tool for collecting vulnerability data from various sources";
74     homepage = "https://github.com/anchore/vunnel";
75     changelog = "https://github.com/anchore/vunnel/releases/tag/v${version}";
76     license = licenses.asl20;
77     maintainers = with maintainers; [ fab ];
78     mainProgram = "vunnel";
79   };