summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2022-03-20 19:03:10 +0100
committerGitHub <noreply@github.com>2022-03-20 19:03:10 +0100
commite335b5e22358b294db8d88f9e274cde877463226 (patch)
tree6af0f0a4633f77df5754eba1b6247bbef250857d /pkgs
parentbf7837529e9f1b0ec6295be0243586821702ca40 (diff)
parent4d1a29944a2e24f160b398b76de499b63a1104ed (diff)
downloadnixpkgs-e335b5e22358b294db8d88f9e274cde877463226.tar
nixpkgs-e335b5e22358b294db8d88f9e274cde877463226.tar.gz
nixpkgs-e335b5e22358b294db8d88f9e274cde877463226.tar.bz2
nixpkgs-e335b5e22358b294db8d88f9e274cde877463226.tar.lz
nixpkgs-e335b5e22358b294db8d88f9e274cde877463226.tar.xz
nixpkgs-e335b5e22358b294db8d88f9e274cde877463226.tar.zst
nixpkgs-e335b5e22358b294db8d88f9e274cde877463226.zip
Merge pull request #164946 from fabaff/bump-tfsec
python3Packages.qiling: 1.4.1 -> 1.4.2
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/qiling/default.nix12
1 files changed, 5 insertions, 7 deletions
diff --git a/pkgs/development/python-modules/qiling/default.nix b/pkgs/development/python-modules/qiling/default.nix
index 6b54409c0af..72995432814 100644
--- a/pkgs/development/python-modules/qiling/default.nix
+++ b/pkgs/development/python-modules/qiling/default.nix
@@ -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;