summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-06-23 11:39:10 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2022-06-23 11:39:10 +0200
commit93c256b94d0052fc1257fbac9ed1935cd9b04140 (patch)
treee79b4fbc6e199e2dcffe756c3b42e7b9a19352b6
parenta5aa9785e34d41bc0134e3556c4395e5d9db3447 (diff)
downloadnixpkgs-93c256b94d0052fc1257fbac9ed1935cd9b04140.tar
nixpkgs-93c256b94d0052fc1257fbac9ed1935cd9b04140.tar.gz
nixpkgs-93c256b94d0052fc1257fbac9ed1935cd9b04140.tar.bz2
nixpkgs-93c256b94d0052fc1257fbac9ed1935cd9b04140.tar.lz
nixpkgs-93c256b94d0052fc1257fbac9ed1935cd9b04140.tar.xz
nixpkgs-93c256b94d0052fc1257fbac9ed1935cd9b04140.tar.zst
nixpkgs-93c256b94d0052fc1257fbac9ed1935cd9b04140.zip
python310Packages.angrop: relax angr constraint
-rw-r--r--pkgs/development/python-modules/angrop/default.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/angrop/default.nix b/pkgs/development/python-modules/angrop/default.nix
index 63dce4bdbed..cfd27ae4cbf 100644
--- a/pkgs/development/python-modules/angrop/default.nix
+++ b/pkgs/development/python-modules/angrop/default.nix
@@ -4,6 +4,7 @@
 , fetchFromGitHub
 , progressbar
 , pythonOlder
+, pythonRelaxDepsHook
 , tqdm
 }:
 
@@ -21,12 +22,20 @@ buildPythonPackage rec {
     hash = "sha256-qaDAicmYZxLPTl17il61ij01prRv2H4xxe07Xg4KWhI=";
   };
 
+  nativeBuildInputs = [
+    pythonRelaxDepsHook
+  ];
+
   propagatedBuildInputs = [
     angr
     progressbar
     tqdm
   ];
 
+  pythonRelaxDeps = [
+    "angr"
+  ];
+
   # Tests have additional requirements, e.g., angr binaries
   # cle is executing the tests with the angr binaries already and is a requirement of angr
   doCheck = false;