2020-11-24 20:58:05 +00:00
|
|
|
{ lib, buildPythonPackage, fetchFromGitHub, pythonOlder, pysha3, setuptools }:
|
2020-11-06 00:33:48 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "crytic-compile";
|
2021-12-19 01:06:50 +00:00
|
|
|
version = "0.2.2";
|
2020-11-06 00:33:48 +00:00
|
|
|
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "crytic";
|
|
|
|
repo = "crytic-compile";
|
|
|
|
rev = version;
|
2021-12-19 01:06:50 +00:00
|
|
|
sha256 = "sha256-4Lz+jJdKURp+K5XJJb7ksiFbnQwzS71gZWOufBvqz/k=";
|
2020-11-06 00:33:48 +00:00
|
|
|
};
|
|
|
|
|
2020-11-24 20:58:05 +00:00
|
|
|
propagatedBuildInputs = [ pysha3 setuptools ];
|
2020-11-06 00:33:48 +00:00
|
|
|
|
|
|
|
doCheck = false;
|
2021-01-15 22:18:51 +00:00
|
|
|
pythonImportsCheck = [ "crytic_compile" ];
|
2020-11-06 00:33:48 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Abstraction layer for smart contract build systems";
|
|
|
|
homepage = "https://github.com/crytic/crytic-compile";
|
2021-02-13 14:23:35 +00:00
|
|
|
license = licenses.agpl3Plus;
|
|
|
|
maintainers = with maintainers; [ SuperSandro2000 arturcygan ];
|
2020-11-06 00:33:48 +00:00
|
|
|
};
|
|
|
|
}
|