12 buildPythonPackage rec {
13 pname = "crytic-compile";
15 format = "setuptools";
17 disabled = pythonOlder "3.8";
19 src = fetchFromGitHub {
21 repo = "crytic-compile";
22 rev = "refs/tags/${version}";
23 hash = "sha256-SMkFzGZg/6akclQ0XLUvjK3uoypsHfRru+B4VurjOrM=";
26 propagatedBuildInputs = [
34 # Test require network access
37 # required for import check to work
38 # PermissionError: [Errno 13] Permission denied: '/homeless-shelter'
40 pythonImportsCheck = [
45 description = "Abstraction layer for smart contract build systems";
46 mainProgram = "crytic-compile";
47 homepage = "https://github.com/crytic/crytic-compile";
48 changelog = "https://github.com/crytic/crytic-compile/releases/tag/${version}";
49 license = licenses.agpl3Plus;
50 maintainers = with maintainers; [ arturcygan hellwolf ];