python3Packages.crytic-compile: 0.1.13 -> 0.2.0

This commit is contained in:
Artur Cygan 2021-07-15 00:20:45 +02:00
parent 23cd13167a
commit 668efc9f52

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 ];