9 buildPythonPackage rec {
10 pname = "bitcoin-utils-fork-minimal";
12 format = "setuptools";
15 inherit pname version;
16 hash = "sha256-DzibvC8qr/5ync59cfFB7tBmZWkPs/hKh+e5OC4lcEw=";
19 propagatedBuildInputs = [
26 substituteInPlace setup.py \
27 --replace "sympy==1.3" "sympy>=1.3" \
28 --replace "base58==2.1.0" "base58>=2.1.0" \
29 --replace "ecdsa==0.17.0" "ecdsa>=0.17.0"
32 # Project doesn't ship tests
35 pythonImportsCheck = [
40 description = "Bitcoin utility functions";
41 homepage = "https://github.com/doersf/python-bitcoin-utils";
42 license = licenses.mit;
43 maintainers = with maintainers; [ fab ];