Files
nixpkgs/pkgs/development/python-modules/ledgerwallet/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

73 lines
1.3 KiB
Nix

{
lib,
fetchFromGitHub,
buildPythonPackage,
cryptography,
click,
construct,
ecdsa,
hidapi,
intelhex,
pillow,
protobuf,
requests,
setuptools,
setuptools-scm,
tabulate,
toml,
}:
buildPythonPackage rec {
pname = "ledgerwallet";
version = "0.5.3";
format = "pyproject";
src = fetchFromGitHub {
owner = "LedgerHQ";
repo = "ledgerctl";
rev = "v${version}";
hash = "sha256-roDfj+igDBS+sTJL4hwYNg5vZzaq+F8QvDA9NucnrMA=";
};
buildInputs = [
setuptools
setuptools-scm
];
propagatedBuildInputs = [
cryptography
click
construct
ecdsa
hidapi
intelhex
pillow
protobuf
requests
tabulate
toml
];
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail '"protobuf >=3.20,<4"' '"protobuf >=3.20"'
'';
# Regenerate protobuf bindings to lift the version upper-bound and enable
# compatibility the current default protobuf library.
preBuild = ''
protoc --python_out=. --pyi_out=. ledgerwallet/proto/*.proto
'';
pythonImportsCheck = [ "ledgerwallet" ];
meta = {
homepage = "https://github.com/LedgerHQ/ledgerctl";
description = "Library to control Ledger devices";
mainProgram = "ledgerctl";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
erdnaxe
];
};
}