mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
python310Packages.py-eth-sig-utils: init at 0.4.0
This commit is contained in:
parent
8d5a2017ca
commit
f5bedc25b2
41
pkgs/development/python-modules/py-eth-sig-utils/default.nix
Normal file
41
pkgs/development/python-modules/py-eth-sig-utils/default.nix
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, eth-abi
|
||||||
|
, py-ecc
|
||||||
|
, pycryptodome
|
||||||
|
, python
|
||||||
|
, rlp
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "py-eth-sig-utils";
|
||||||
|
version = "0.4.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "rmeissner";
|
||||||
|
repo = "py-eth-sig-utils";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "sha256-PNvEHH5w2ptntRGzqWrqlbIzJJsT60OXg/Dh5f6Wq9k=";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
eth-abi
|
||||||
|
py-ecc
|
||||||
|
pycryptodome
|
||||||
|
rlp
|
||||||
|
];
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
${python.interpreter} -m unittest
|
||||||
|
'';
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "py_eth_sig_utils" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Collection of functions to generate hashes for signing on Ethereum";
|
||||||
|
homepage = "https://github.com/rmeissner/py-eth-sig-utils";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
||||||
|
};
|
||||||
|
}
|
@ -5931,6 +5931,8 @@ in {
|
|||||||
|
|
||||||
py-deprecate = callPackage ../development/python-modules/py-deprecate { };
|
py-deprecate = callPackage ../development/python-modules/py-deprecate { };
|
||||||
|
|
||||||
|
py-eth-sig-utils = callPackage ../development/python-modules/py-eth-sig-utils { };
|
||||||
|
|
||||||
nwdiag = callPackage ../development/python-modules/nwdiag { };
|
nwdiag = callPackage ../development/python-modules/nwdiag { };
|
||||||
|
|
||||||
oasatelematics = callPackage ../development/python-modules/oasatelematics { };
|
oasatelematics = callPackage ../development/python-modules/oasatelematics { };
|
||||||
|
Loading…
Reference in New Issue
Block a user