summary refs log tree commit diff
path: root/pkgs/development/python-modules/cle/default.nix
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-04-19 22:15:56 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2021-04-20 17:50:27 +0200
commit4f737c080be54a000a9181f6b26bfcaf600e189e (patch)
tree46a521903ea31bc9333b4ad5b1fdc17f885e7e84 /pkgs/development/python-modules/cle/default.nix
parentcc8ecf263f477df610716b01b6c24c428392ca7d (diff)
downloadnixpkgs-4f737c080be54a000a9181f6b26bfcaf600e189e.tar
nixpkgs-4f737c080be54a000a9181f6b26bfcaf600e189e.tar.gz
nixpkgs-4f737c080be54a000a9181f6b26bfcaf600e189e.tar.bz2
nixpkgs-4f737c080be54a000a9181f6b26bfcaf600e189e.tar.lz
nixpkgs-4f737c080be54a000a9181f6b26bfcaf600e189e.tar.xz
nixpkgs-4f737c080be54a000a9181f6b26bfcaf600e189e.tar.zst
nixpkgs-4f737c080be54a000a9181f6b26bfcaf600e189e.zip
python3Packages.cle: 9.0.6281 -> 9.0.6790
Diffstat (limited to 'pkgs/development/python-modules/cle/default.nix')
-rw-r--r--pkgs/development/python-modules/cle/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/cle/default.nix b/pkgs/development/python-modules/cle/default.nix
index 436a364b2b5..feaab56600f 100644
--- a/pkgs/development/python-modules/cle/default.nix
+++ b/pkgs/development/python-modules/cle/default.nix
@@ -15,7 +15,7 @@
 
 let
   # The binaries are following the argr projects release cycle
-  version = "9.0.6281";
+  version = "9.0.6790";
 
   # Binary files from https://github.com/angr/binaries (only used for testing and only here)
   binaries = fetchFromGitHub {
@@ -35,7 +35,7 @@ buildPythonPackage rec {
     owner = "angr";
     repo = pname;
     rev = "v${version}";
-    sha256 = "0f2zc02dljmgp6ny6ja6917j08kqhwckncan860dq4xv93g61rmg";
+    sha256 = "sha256-zQggVRdc8fV1ulFnOlzYLvSOSOP3+dY8j+6lo+pXSkM=";
   };
 
   propagatedBuildInputs = [
@@ -64,6 +64,8 @@ buildPythonPackage rec {
     "test_ppc_rel24_relocation"
     "test_ppc_addr16_ha_relocation"
     "test_ppc_addr16_lo_relocation"
+    # Binary not found, seems to be missing in the current binaries release
+    "test_plt_full_relro"
   ];
 
   pythonImportsCheck = [ "cle" ];