python3Packages.bip32: loosen dependency requirements

This commit is contained in:
Vladimír Čunát 2024-03-20 09:33:07 +01:00
parent e240f8bde9
commit 199a214038
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA

View File

@ -23,6 +23,12 @@ buildPythonPackage rec {
hash = "sha256-o8UKR17XDWp1wTWYeDL0DJY+D11YI4mg0UuGEAPkHxE=";
};
# https://github.com/darosior/python-bip32/pull/40/files
postPatch = ''
substituteInPlace requirements.txt \
--replace-fail 'coincurve>=15.0,<19' 'coincurve>=15.0,<20'
'';
nativeBuildInputs = [
setuptools
];