9 buildPythonPackage rec {
10 pname = "base58check";
12 format = "setuptools";
14 disabled = pythonOlder "3.8";
16 src = fetchFromGitHub {
17 owner = "joeblackwaslike";
20 hash = "sha256-Tig6beLRDsXC//x4+t/z2BGaJQWzcP0J+QEKx3D0rhs=";
23 nativeCheckInputs = [ pytestCheckHook ];
25 pythonImportsCheck = [ "base58check" ];
28 description = "Implementation of the Base58Check encoding scheme";
29 homepage = "https://github.com/joeblackwaslike/base58check";
30 license = licenses.mit;
31 maintainers = with maintainers; [ fab ];