11 buildPythonPackage rec {
12 pname = "shamir-mnemonic";
17 src = fetchFromGitHub {
19 repo = "python-${pname}";
21 sha256 = "1mi1n01yw8yycbiv1l0xnfzlhhq2arappyvyi2jm5yq65jln77kg";
24 propagatedBuildInputs = [
30 checkInputs = [ pytestCheckHook ];
32 pythonImportsCheck = [ "shamir_mnemonic" ];
35 description = "Reference implementation of SLIP-0039";
36 homepage = "https://github.com/trezor/python-shamir-mnemonic";
37 license = licenses.mit;
38 maintainers = with maintainers; [ _1000101 prusnak ];