python310Packages.crytic-compile: 0.2.4 -> 0.3.0

Changelog: https://github.com/crytic/crytic-compile/releases/tag/0.3.0
This commit is contained in:
Fabian Affolter 2023-01-14 17:35:40 +01:00
parent d07819dfdf
commit 1be7748c0d

View file

@ -1,14 +1,16 @@
{ lib
, buildPythonPackage
, cbor2
, fetchFromGitHub
, pythonOlder
, pycryptodome
, pysha3
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "crytic-compile";
version = "0.2.4";
version = "0.3.0";
format = "setuptools";
disabled = pythonOlder "3.6";
@ -17,10 +19,12 @@ buildPythonPackage rec {
owner = "crytic";
repo = "crytic-compile";
rev = "refs/tags/${version}";
hash = "sha256-phb4Y8CUxuHsNt43oKsgDAZTraNauPkcYQtzcsiWyy8=";
hash = "sha256-4iTvtu2TmxvLTyWm4PV0+yV1fRLYpJHZNBgjy1MFLjM=";
};
propagatedBuildInputs = [
cbor2
pycryptodome
pysha3
setuptools
];