vunnel: 0.31.0 -> 0.32.0 (#406098)

This commit is contained in:
Fabian Affolter
2025-05-12 00:03:04 +02:00
committed by GitHub
+32 -26
View File
@@ -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,32 +28,37 @@ python3.pkgs.buildPythonApplication rec {
];
build-system = with python3.pkgs; [
poetry-core
poetry-dynamic-versioning
hatchling
uv-dynamic-versioning
];
dependencies = with python3.pkgs; [
click
colorlog
cvss
defusedxml
ijson
importlib-metadata
iso8601
lxml
mashumaro
mergedeep
orjson
packageurl-python
pytest-snapshot
python-dateutil
pyyaml
requests
sqlalchemy
xsdata
xxhash
zstandard
];
dependencies =
with python3.pkgs;
[
click
colorlog
cvss
defusedxml
ijson
importlib-metadata
iso8601
lxml
mashumaro
mergedeep
orjson
packageurl-python
pytest-snapshot
python-dateutil
pyyaml
requests
sqlalchemy
xsdata
xxhash
zstandard
]
++ xsdata.optional-dependencies.cli
++ xsdata.optional-dependencies.lxml
++ xsdata.optional-dependencies.soap;
nativeCheckInputs =
[ git ]