pythonPackages.pyevmasm: init at 0.2.3
This commit is contained in:
parent
69534f39a7
commit
ca9a626d54
30
pkgs/development/python-modules/pyevmasm/default.nix
Normal file
30
pkgs/development/python-modules/pyevmasm/default.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{ 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 ];
|
||||
|
||||
checkInputs = [ 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 ];
|
||||
};
|
||||
}
|
@ -5201,6 +5201,8 @@ in {
|
||||
|
||||
pyerfa = callPackage ../development/python-modules/pyerfa { };
|
||||
|
||||
pyevmasm = callPackage ../development/python-modules/pyevmasm { };
|
||||
|
||||
pyexcel = callPackage ../development/python-modules/pyexcel { };
|
||||
|
||||
pyexcelerator = callPackage ../development/python-modules/pyexcelerator { };
|
||||
|
Loading…
Reference in New Issue
Block a user