mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 05:04:00 +00:00
50 lines
1.1 KiB
Nix
50 lines
1.1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, cbor2
|
|
, fetchFromGitHub
|
|
, pycryptodome
|
|
, pythonOlder
|
|
, setuptools
|
|
, solc-select
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "crytic-compile";
|
|
version = "0.3.4";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "crytic";
|
|
repo = "crytic-compile";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-CeoACtgvMweDbIvYguK2Ca+iTBFONWcE2b0qUkBbQSU=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
cbor2
|
|
pycryptodome
|
|
setuptools
|
|
solc-select
|
|
];
|
|
|
|
# Test require network access
|
|
doCheck = false;
|
|
|
|
# required for import check to work
|
|
# PermissionError: [Errno 13] Permission denied: '/homeless-shelter'
|
|
env.HOME = "/tmp";
|
|
pythonImportsCheck = [
|
|
"crytic_compile"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Abstraction layer for smart contract build systems";
|
|
homepage = "https://github.com/crytic/crytic-compile";
|
|
changelog = "https://github.com/crytic/crytic-compile/releases/tag/${version}";
|
|
license = licenses.agpl3Plus;
|
|
maintainers = with maintainers; [ arturcygan hellwolf ];
|
|
};
|
|
}
|