aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/crytic-compile/default.nix
blob: e6f82c6d8ad8edc031130b05089664b1df2e987d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib, buildPythonPackage, fetchFromGitHub, pythonOlder, pysha3 }:

buildPythonPackage rec {
  pname = "crytic-compile";
  version = "0.1.9";

  disabled = pythonOlder "3.6";

  src = fetchFromGitHub {
    owner = "crytic";
    repo = "crytic-compile";
    rev = version;
    sha256 = "01mis7bqsh0l5vjl6jwibzy99djza35fxmywy56q8k4jbxwmdcna";
  };

  propagatedBuildInputs = [ pysha3 ];

  doCheck = false;

  meta = with lib; {
    description = "Abstraction layer for smart contract build systems";
    homepage = "https://github.com/crytic/crytic-compile";
    license = licenses.agpl3;
    maintainers = with maintainers; [ SuperSandro2000 ];
  };
}