12 buildPythonPackage rec {
17 disabled = pythonOlder "3.9";
19 # the PyPi source distribution ships a broken setup.py, so use github instead
20 src = fetchFromGitHub {
22 repo = "python-bip32";
24 hash = "sha256-o8UKR17XDWp1wTWYeDL0DJY+D11YI4mg0UuGEAPkHxE=";
27 pythonRelaxDeps = [ "coincurve" ];
29 nativeBuildInputs = [ setuptools ];
31 propagatedBuildInputs = [
36 nativeCheckInputs = [ pytestCheckHook ];
38 pythonImportsCheck = [ "bip32" ];
41 description = "Minimalistic implementation of the BIP32 key derivation scheme";
42 homepage = "https://github.com/darosior/python-bip32";
43 changelog = "https://github.com/darosior/python-bip32/blob/${version}/CHANGELOG.md";
44 license = with licenses; [ bsd3 ];
45 maintainers = with maintainers; [ arcnmx ];