python3Packages.qiling: 1.4.1 -> 1.4.2

This commit is contained in:
Fabian Affolter 2022-03-20 09:53:08 +01:00
parent 14f98111ba
commit 4d1a29944a

View file

@ -8,18 +8,22 @@
, multiprocess
, pefile
, pyelftools
, pythonOlder
, python-registry
, pyyaml
, unicorn
}:
buildPythonPackage rec {
pname = "qiling";
version = "1.4.1";
version = "1.4.2";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "e72dc5856cbda975f962ddf063063a32bd6c3b825f75e0795e94ba6840a7d45f";
hash = "sha256-myUGzNP4bf90d2gY5ZlYbVlTG640dj/Qha8/aMydvuw=";
};
propagatedBuildInputs = [
@ -30,14 +34,10 @@ buildPythonPackage rec {
pefile
pyelftools
python-registry
pyyaml
unicorn
];
postPatch = ''
substituteInPlace setup.py \
--replace "pefile==2021.5.24" "pefile>=2021.5.24"
'';
# Tests are broken (attempt to import a file that tells you not to import it,
# amongst other things)
doCheck = false;