depot/third_party/nixpkgs/pkgs/development/python-modules/btchip/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

22 lines
579 B
Nix

{ lib, buildPythonPackage, fetchPypi, hidapi, pyscard, ecdsa }:
buildPythonPackage rec {
pname = "btchip-python";
version = "0.1.31";
src = fetchPypi {
inherit pname version;
sha256 = "4167f3c6ea832dd189d447d0d7a8c2a968027671ae6f43c680192f2b72c39b2c";
};
propagatedBuildInputs = [ hidapi pyscard ecdsa ];
# tests requires hardware
doCheck = false;
meta = with lib; {
description = "Python communication library for Ledger Hardware Wallet products";
homepage = "https://github.com/LedgerHQ/btchip-python";
license = licenses.asl20;
};
}