depot/third_party/nixpkgs/pkgs/development/python-modules/pyevmasm/default.nix
Default email a0cb138ada Project import generated by Copybara.
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
2023-02-02 18:25:31 +00:00

30 lines
708 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, future
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pyevmasm";
version = "0.2.3";
src = fetchFromGitHub {
owner = "crytic";
repo = pname;
rev = version;
sha256 = "134q0z0dqzxzr0jw5jr98kp90kx2dl0qw9smykwxdgq555q1l6qa";
};
propagatedBuildInputs = [ future ];
nativeCheckInputs = [ pytestCheckHook ];
meta = with lib; {
description = "Ethereum Virtual Machine (EVM) assembler and disassembler";
homepage = "https://github.com/crytic/pyevmasm";
changelog = "https://github.com/crytic/pyevmasm/releases/tag/${version}";
license = licenses.asl20;
maintainers = with maintainers; [ arturcygan ];
};
}