diff --git a/pkgs/development/python-modules/wapiti-arsenic/default.nix b/pkgs/development/python-modules/wapiti-arsenic/default.nix index b0fb440cf612..bf4f4f92bcc8 100644 --- a/pkgs/development/python-modules/wapiti-arsenic/default.nix +++ b/pkgs/development/python-modules/wapiti-arsenic/default.nix @@ -7,43 +7,32 @@ poetry-core, # dependencies - aiohttp, - attrs, + httpx, packaging, - structlog, }: buildPythonPackage rec { pname = "wapiti-arsenic"; - version = "28.2"; + version = "28.5"; pyproject = true; - # Latest tag is not on GitHub src = fetchPypi { pname = "wapiti_arsenic"; inherit version; - hash = "sha256-QxjM0BsiHm/LPUuGLLPG6OUcr4YXBEpfJGTwKp1zTWQ="; + hash = "sha256-snIKEdrBOIfPeHkVLv0X5lsBzDbOtDrbOj4m8UNCj60="; }; postPatch = '' substituteInPlace pyproject.toml \ - --replace-fail "poetry>=0.12" "poetry-core" \ + --replace-fail "poetry>=2.1.3" "poetry-core" \ --replace-fail "poetry.masonry" "poetry.core.masonry" ''; - build-system = [ - poetry-core - ]; - - pythonRelaxDeps = [ - "structlog" - ]; + build-system = [ poetry-core ]; dependencies = [ - aiohttp - attrs + httpx packaging - structlog ]; pythonImportsCheck = [ "wapiti_arsenic" ]; @@ -54,6 +43,7 @@ buildPythonPackage rec { meta = { description = "Asynchronous WebDriver client"; homepage = "https://github.com/wapiti-scanner/arsenic"; + changelog = "https://github.com/wapiti-scanner/arsenic/blob/${version}/CHANGELOG.md"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ GaetanLepage ]; };