blob: be8fda29b84255bcd37b45074e4bb541e137c5f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
{
lib,
fetchFromGitHub,
buildPythonPackage,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "base58check";
version = "1.0.2";
format = "setuptools";
src = fetchFromGitHub {
owner = "joeblackwaslike";
repo = "base58check";
rev = "v${version}";
hash = "sha256-Tig6beLRDsXC//x4+t/z2BGaJQWzcP0J+QEKx3D0rhs=";
};
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "base58check" ];
meta = {
description = "Implementation of the Base58Check encoding scheme";
homepage = "https://github.com/joeblackwaslike/base58check";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
|