Skip to content

Commit

Permalink
python: pwntools: 4.1.1 -> 4.2.1
Browse files Browse the repository at this point in the history
The previous update broke the build, this updates fixes it
  • Loading branch information
kristoff3r committed Jul 28, 2020
1 parent 8b633d8 commit edfcd37
Showing 1 changed file with 49 additions and 8 deletions.
57 changes: 49 additions & 8 deletions pkgs/development/python-modules/pwntools/default.nix
Original file line number Diff line number Diff line change
@@ -1,19 +1,60 @@
{ stdenv, buildPythonPackage, fetchPypi, isPy3k
, Mako, packaging, pysocks, pygments, ROPGadget
, capstone, paramiko, pip, psutil
, pyelftools, pyserial, dateutil
, requests, tox, unicorn, intervaltree, fetchpatch }:
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
, Mako
, packaging
, pysocks
, pygments
, ROPGadget
, capstone
, paramiko
, pip
, psutil
, pyelftools
, pyserial
, dateutil
, requests
, tox
, unicorn
, intervaltree
, fetchpatch
}:

buildPythonPackage rec {
version = "4.1.1";
version = "4.2.1";
pname = "pwntools";

src = fetchPypi {
inherit pname version;
sha256 = "694ce7a6cfca0ad40eae36c1d2663c44eb953f84785c63daa9752b4dfa7f39d8";
sha256 = "1fh7sq9wrcfvn44qryln9cyg99pilvyq9bp80758lgdd6ss6hdqd";
};

propagatedBuildInputs = [ Mako packaging pysocks pygments ROPGadget capstone paramiko pip psutil pyelftools pyserial dateutil requests tox unicorn intervaltree ];
# Upstream has set an upper bound on unicorn because of https://github.com/Gallopsled/pwntools/issues/1538,
# but since that is a niche use case and it requires extra work to get unicorn 1.0.2rc3 to work we relax
# the bound here. Check if this is still necessary when updating!
postPatch = ''
sed -i 's/unicorn>=1.0.2rc1,<1.0.2rc4/unicorn>=1.0.2rc1/' setup.py
'';

propagatedBuildInputs = [
Mako
packaging
pysocks
pygments
ROPGadget
capstone
paramiko
pip
psutil
pyelftools
pyserial
dateutil
requests
tox
unicorn
intervaltree
];

doCheck = false; # no setuptools tests for the package

Expand Down

0 comments on commit edfcd37

Please sign in to comment.