From 6bce0392db02c490e0dd64ca4a44407da1a6e70e Mon Sep 17 00:00:00 2001 From: Peder Bergebakken Sundt Date: Fri, 28 Feb 2025 19:04:06 +0100 Subject: [PATCH] python312Packages.cle: 9.2.141 -> 9.2.144 --- pkgs/development/python-modules/cle/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/cle/default.nix b/pkgs/development/python-modules/cle/default.nix index b9f3a48bdf30..22459cdcdf61 100644 --- a/pkgs/development/python-modules/cle/default.nix +++ b/pkgs/development/python-modules/cle/default.nix @@ -12,11 +12,12 @@ pyvex, setuptools, sortedcontainers, + nix-update-script, }: let # The binaries are following the argr projects release cycle - version = "9.2.141"; + version = "9.2.144"; # Binary files from https://github.com/angr/binaries (only used for testing and only here) binaries = fetchFromGitHub { @@ -37,7 +38,7 @@ buildPythonPackage rec { owner = "angr"; repo = "cle"; rev = "refs/tags/v${version}"; - hash = "sha256-1l3wiyRhUuaw2eO+34lBcS2POlJoBVBuiOY6VoglD+A="; + hash = "sha256-q+4uf+yXlUebL5yqk3/KnhKR145NMCa79edknHYebWc="; }; build-system = [ setuptools ]; @@ -76,6 +77,8 @@ buildPythonPackage rec { pythonImportsCheck = [ "cle" ]; + passthru.updateScript = nix-update-script { }; + meta = with lib; { description = "Python loader for many binary formats"; homepage = "https://github.com/angr/cle";