python3Packages.angrop: remove postPatch

This commit is contained in:
Fabian Affolter 2021-06-05 10:21:29 +02:00
parent b096b6d308
commit d05bacf145

View file

@ -25,13 +25,6 @@ buildPythonPackage rec {
tqdm
];
postPatch = ''
# https://github.com/angr/angrop/issues/35
substituteInPlace setup.py \
--replace "packages=['angrop']," "packages=find_packages()," \
--replace "from distutils.core import setup" "from setuptools import find_packages, setup"
'';
# 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;