summaryrefslogtreecommitdiffstats
path: root/pkgs
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-12-29 00:27:59 +0100
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-12-28 21:57:02 -0800
commitdcc6ff0331da2a6804526063dfda15e1a08f894c (patch)
tree70d010a18f9043685b153d1811062c8c2911170f /pkgs
parent8a54f4c0bbef28976f69347c458ce74ed98e0234 (diff)
python3Packages.angrcli: 1.1.1 -> 1.2.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/angrcli/default.nix7
1 files changed, 2 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/angrcli/default.nix b/pkgs/development/python-modules/angrcli/default.nix
index 30c90cfa5833..bad2bb01bf8a 100644
--- a/pkgs/development/python-modules/angrcli/default.nix
+++ b/pkgs/development/python-modules/angrcli/default.nix
@@ -11,7 +11,7 @@
buildPythonPackage rec {
pname = "angrcli";
- version = "1.1.1";
+ version = "1.2.0";
format = "setuptools";
disabled = pythonOlder "3.6";
@@ -20,7 +20,7 @@ buildPythonPackage rec {
owner = "fmagin";
repo = "angr-cli";
rev = "v${version}";
- sha256 = "0mz3yzsw08xwpj6188rxmr7darilh4ismcnh8nhp9945wjyzl4kr";
+ sha256 = "sha256-a5ajUBQwt3xUNkeSOeGOAFf47wd4UVk+LcuAHGqbq4s=";
};
propagatedBuildInputs = [
@@ -35,9 +35,6 @@ buildPythonPackage rec {
];
postPatch = ''
- # Version mismatch, https://github.com/fmagin/angr-cli/pull/11
- substituteInPlace setup.py \
- --replace "version='1.1.0'," "version='${version}',"
substituteInPlace tests/test_derefs.py \
--replace "/bin/ls" "${coreutils}/bin/ls"
'';