Files
nixpkgs/pkgs/development/python-modules/ledger-bitcoin/default.nix
Alexis Hildebrandt bf995e3641 treewide: Remove ending period from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*".*\.";' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*)\.";/\1";/'
2024-06-09 23:04:51 +02:00

42 lines
798 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
ledgercomm,
packaging,
bip32,
coincurve,
typing-extensions,
}:
buildPythonPackage rec {
pname = "ledger-bitcoin";
version = "0.3.0";
format = "pyproject";
src = fetchPypi {
inherit version;
pname = "ledger_bitcoin";
hash = "sha256-rZzerzOkVWK71brmdRAluGmi+B1usCZ90GKgH1klpNU=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
ledgercomm
packaging
bip32
coincurve
typing-extensions
];
pythonImportsCheck = [ "ledger_bitcoin" ];
meta = with lib; {
description = "Client library for Ledger Bitcoin application";
homepage = "https://github.com/LedgerHQ/app-bitcoin-new/tree/develop/bitcoin_client/ledger_bitcoin";
license = licenses.asl20;
};
}