python3Packages.mnemonic: 0.20 -> 0.21

This commit is contained in:
t4ccer 2024-07-18 02:34:40 -06:00
parent 49f3d5c917
commit 117982d52e
No known key found for this signature in database
GPG Key ID: 19E5A2D8B1E43F19

View File

@ -3,20 +3,23 @@
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
poetry-core,
}:
buildPythonPackage rec {
pname = "mnemonic";
version = "0.20";
format = "setuptools";
version = "0.21";
pyproject = true;
src = fetchFromGitHub {
owner = "trezor";
repo = "python-${pname}";
repo = "python-mnemonic";
rev = "v${version}";
hash = "sha256-YYgWlYfVd1iALOziaUI8uVYjJDCIVk/dXcUmJd2jcvQ=";
hash = "sha256-D1mS/JQhefYmwrShfWR9SdiGsBUM+jmuCkfWix9tDOU=";
};
build-system = [ poetry-core ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "mnemonic" ];