fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
33 lines
667 B
Nix
33 lines
667 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mnemonic";
|
|
version = "0.20";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "trezor";
|
|
repo = "python-${pname}";
|
|
rev = "v${version}";
|
|
hash = "sha256-YYgWlYfVd1iALOziaUI8uVYjJDCIVk/dXcUmJd2jcvQ=";
|
|
};
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "mnemonic" ];
|
|
|
|
meta = with lib; {
|
|
description = "Reference implementation of BIP-0039";
|
|
homepage = "https://github.com/trezor/python-mnemonic";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [
|
|
np
|
|
prusnak
|
|
];
|
|
};
|
|
}
|