python3Packages.python-owasp-zap-v2-4: 0.5.0 -> 0.6.0 (#533193)

This commit is contained in:
Fabian Affolter 2026-06-19 07:39:22 +00:00 committed by GitHub
commit 2a80e0caeb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -10,16 +10,16 @@
six,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "python-owasp-zap-v2-4";
version = "0.5.0";
version = "0.6.0";
pyproject = true;
src = fetchFromGitHub {
owner = "zaproxy";
repo = "zap-api-python";
tag = version;
hash = "sha256-8aZbnUoS9lrqM0XQg4PD/j1JFKzGh9dyzWF89Szdzao=";
tag = finalAttrs.version;
hash = "sha256-a0F6asx8Dl1T/OqNhHukHRbq+LUqsl3im+y1k096pfE=";
};
build-system = [ poetry-core ];
@ -43,4 +43,4 @@ buildPythonPackage rec {
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}
})