python3Packages.base58check: modernize

This commit is contained in:
Harinn
2026-06-06 01:19:21 +07:00
parent 1ef9f74e2c
commit 77a78f73d1
@@ -6,17 +6,19 @@
pytestCheckHook,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "base58check";
version = "1.0.2";
pyproject = true;
__structuredAttrs = true;
build-system = [ setuptools ];
src = fetchFromGitHub {
owner = "joeblackwaslike";
repo = "base58check";
rev = "v${version}";
tag = "v${finalAttrs.version}";
hash = "sha256-Tig6beLRDsXC//x4+t/z2BGaJQWzcP0J+QEKx3D0rhs=";
};
@@ -30,4 +32,4 @@ buildPythonPackage rec {
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})