Merge pull request #164946 from fabaff/bump-tfsec

python3Packages.qiling: 1.4.1 -> 1.4.2

authored by Fabian Affolter and committed by GitHub e335b5e2 bf783752

+5 -7
+5 -7
pkgs/development/python-modules/qiling/default.nix
··· 8 8 , multiprocess 9 9 , pefile 10 10 , pyelftools 11 + , pythonOlder 11 12 , python-registry 12 13 , pyyaml 13 14 , unicorn ··· 15 16 16 17 buildPythonPackage rec { 17 18 pname = "qiling"; 18 - version = "1.4.1"; 19 + version = "1.4.2"; 19 20 format = "setuptools"; 20 21 22 + disabled = pythonOlder "3.7"; 23 + 21 24 src = fetchPypi { 22 25 inherit pname version; 23 - sha256 = "e72dc5856cbda975f962ddf063063a32bd6c3b825f75e0795e94ba6840a7d45f"; 26 + hash = "sha256-myUGzNP4bf90d2gY5ZlYbVlTG640dj/Qha8/aMydvuw="; 24 27 }; 25 28 26 29 propagatedBuildInputs = [ ··· 34 37 pyyaml 35 38 unicorn 36 39 ]; 37 - 38 - postPatch = '' 39 - substituteInPlace setup.py \ 40 - --replace "pefile==2021.5.24" "pefile>=2021.5.24" 41 - ''; 42 40 43 41 # Tests are broken (attempt to import a file that tells you not to import it, 44 42 # amongst other things)