Merge pull request #130241 from arcz/update-crytic-compile

python3Packages.crytic-compile: 0.1.13 -> 0.2.0
This commit is contained in:
Sandro 2021-07-15 21:41:58 +02:00 committed by GitHub
commit a952160eb8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,19 +2,15 @@
buildPythonPackage rec {
pname = "crytic-compile";
version = "0.1.13";
version = "0.2.0";
disabled = pythonOlder "3.6";
patchPhase = ''
substituteInPlace setup.py --replace 'version="0.1.11",' 'version="${version}",'
'';
src = fetchFromGitHub {
owner = "crytic";
repo = "crytic-compile";
rev = version;
sha256 = "sha256-KJRfkUyUI0M7HevY4XKOtCvU+SFlsJIl3kTIccWfNmw=";
sha256 = "sha256-Kuc7g5+4TIcQTWYjG4uPN0Rxfom/A/xpek5K5ErlbdU=";
};
propagatedBuildInputs = [ pysha3 setuptools ];