{ lib , buildPythonPackage , fetchFromGitHub , pythonOlder , ecdsa , pysha3 }: buildPythonPackage rec { pname = "bip_utils"; version = "1.5.0"; disabled = pythonOlder "3.6"; src = fetchFromGitHub { owner = "ebellocchia"; repo = pname; rev = "v${version}"; sha256 = "06ls1lara7sklqw6wrw5d3wpxwgyv6paxwjp37x7b3kfskm14cmd"; }; propagatedBuildInputs = [ ecdsa pysha3 ]; pythonImportsCheck = [ "bip_utils" ]; meta = { description = "Implementation of BIP39, BIP32, BIP44, BIP49 and BIP84 for wallet seeds, keys and addresses generation"; homepage = "https://github.com/ebellocchia/bip_utils"; license = with lib.licenses; [ mit ]; maintainers = with lib.maintainers; [ prusnak ]; }; }