Merge pull request #233290 from fabaff/pwntools-bump

python310Packages.pwntools: 4.9.0 -> 4.10.0

authored by Fabian Affolter and committed by GitHub ac925d2c 7bd6339f

+4 -8
+4 -8
pkgs/development/python-modules/pwntools/default.nix
··· 28 28 debuggerName = lib.strings.getName debugger; 29 29 in 30 30 buildPythonPackage rec { 31 - version = "4.9.0"; 32 31 pname = "pwntools"; 32 + version = "4.10.0"; 33 33 34 34 src = fetchPypi { 35 35 inherit pname version; 36 - hash = "sha256-7qZ9GC+RcEiDkpmNmy8d67dYiTgFBVAfB3B2RfrH5xI="; 36 + hash = "sha256-WI6J6meFJ8C1tsru7n524xNS544vHPPdp7yaz1JuRG0="; 37 37 }; 38 38 39 39 postPatch = '' 40 - # Upstream has set an upper bound on unicorn because of https://github.com/Gallopsled/pwntools/issues/1538, 41 - # but since that is a niche use case and it requires extra work to get unicorn 1.0.2rc3 to work we relax 42 - # the bound here. Check if this is still necessary when updating! 43 - sed -i 's/unicorn>=1.0.2rc1,<1.0.2rc4/unicorn>=1.0.2rc1/' setup.py 44 - 45 40 # Upstream hardcoded the check for the command `gdb-multiarch`; 46 41 # Forcefully use the provided debugger, as `gdb` (hence `pwndbg`) is built with multiarch in `nixpkgs`. 47 42 sed -i 's/gdb-multiarch/${debuggerName}/' pwnlib/gdb.py ··· 84 79 ''; 85 80 86 81 meta = with lib; { 82 + description = "CTF framework and exploit development library"; 87 83 homepage = "https://pwntools.com"; 88 - description = "CTF framework and exploit development library"; 84 + changelog = "https://github.com/Gallopsled/pwntools/releases/tag/${version}"; 89 85 license = licenses.mit; 90 86 maintainers = with maintainers; [ bennofs kristoff3r pamplemousse ]; 91 87 };