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=";
30 propagatedBuildInputs = [
39 pythonImportsCheck = [
44 description = "Minimalistic implementation of the BIP32 key derivation scheme";
45 homepage = "https://github.com/darosior/python-bip32";
46 changelog = "https://github.com/darosior/python-bip32/blob/${version}/CHANGELOG.md";
47 license = with licenses; [ bsd3 ];
48 maintainers = with maintainers; [ arcnmx ];