11 buildPythonPackage rec {
16 disabled = pythonOlder "3.9";
18 # the PyPi source distribution ships a broken setup.py, so use github instead
19 src = fetchFromGitHub {
21 repo = "python-bip32";
23 hash = "sha256-o8UKR17XDWp1wTWYeDL0DJY+D11YI4mg0UuGEAPkHxE=";
26 # https://github.com/darosior/python-bip32/pull/40/files
28 substituteInPlace requirements.txt \
29 --replace-fail 'coincurve>=15.0,<19' 'coincurve>=15.0,<20'
36 propagatedBuildInputs = [
45 pythonImportsCheck = [
50 description = "Minimalistic implementation of the BIP32 key derivation scheme";
51 homepage = "https://github.com/darosior/python-bip32";
52 changelog = "https://github.com/darosior/python-bip32/blob/${version}/CHANGELOG.md";
53 license = with licenses; [ bsd3 ];
54 maintainers = with maintainers; [ arcnmx ];