Commit 857a98fd authored by Fabian Affolter's avatar Fabian Affolter
Browse files

vunnel: 0.31.0 -> 0.32.0

parent 276b2e84
Loading
Loading
Loading
Loading
+32 −26
Original line number Diff line number Diff line
@@ -7,14 +7,15 @@

python3.pkgs.buildPythonApplication rec {
  pname = "vunnel";
  version = "0.31.0";
  version = "0.32.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "anchore";
    repo = "vunnel";
    tag = "v${version}";
    hash = "sha256-3o4ap8BElDxxg3pohzXz38AQlQbzOPeSc5/OYZg8VFM=";
    hash = "sha256-5zO1/lfB5ULJqSt14by9OYFT/0H9ZGSkA90wmf7dB5U=";
    leaveDotGit = true;
  };

  pythonRelaxDeps = [
@@ -27,11 +28,13 @@ python3.pkgs.buildPythonApplication rec {
  ];

  build-system = with python3.pkgs; [
    poetry-core
    poetry-dynamic-versioning
    hatchling
    uv-dynamic-versioning
  ];

  dependencies = with python3.pkgs; [
  dependencies =
    with python3.pkgs;
    [
      click
      colorlog
      cvss
@@ -52,7 +55,10 @@ python3.pkgs.buildPythonApplication rec {
      xsdata
      xxhash
      zstandard
  ];
    ]
    ++ xsdata.optional-dependencies.cli
    ++ xsdata.optional-dependencies.lxml
    ++ xsdata.optional-dependencies.soap;

  nativeCheckInputs =
    [ git ]