python: pwntools: 4.1.1 -> 4.2.1
The previous update broke the build, this updates fixes it
This commit is contained in:
parent
8b633d8b3c
commit
edfcd37def
@ -1,19 +1,60 @@
|
|||||||
{ stdenv, buildPythonPackage, fetchPypi, isPy3k
|
{ stdenv
|
||||||
, Mako, packaging, pysocks, pygments, ROPGadget
|
, buildPythonPackage
|
||||||
, capstone, paramiko, pip, psutil
|
, fetchPypi
|
||||||
, pyelftools, pyserial, dateutil
|
, isPy3k
|
||||||
, requests, tox, unicorn, intervaltree, fetchpatch }:
|
, Mako
|
||||||
|
, packaging
|
||||||
|
, pysocks
|
||||||
|
, pygments
|
||||||
|
, ROPGadget
|
||||||
|
, capstone
|
||||||
|
, paramiko
|
||||||
|
, pip
|
||||||
|
, psutil
|
||||||
|
, pyelftools
|
||||||
|
, pyserial
|
||||||
|
, dateutil
|
||||||
|
, requests
|
||||||
|
, tox
|
||||||
|
, unicorn
|
||||||
|
, intervaltree
|
||||||
|
, fetchpatch
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
version = "4.1.1";
|
version = "4.2.1";
|
||||||
pname = "pwntools";
|
pname = "pwntools";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
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
|
doCheck = false; # no setuptools tests for the package
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user