Merge pull request #164946 from fabaff/bump-tfsec

python3Packages.qiling: 1.4.1 -> 1.4.2
This commit is contained in:
Fabian Affolter 2022-03-20 19:03:10 +01:00 committed by GitHub
commit e335b5e223
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,6 +8,7 @@
, multiprocess
, pefile
, pyelftools
, pythonOlder
, python-registry
, pyyaml
, unicorn
@ -15,12 +16,14 @@
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 = [
@ -35,11 +38,6 @@ buildPythonPackage rec {
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;