pythonPackages.ledgerblue: init at 0.1.13

This commit is contained in:
rnhmjoj 2017-05-31 22:25:39 +02:00
parent 9e61a82ab3
commit 6c0e6eeb58
No known key found for this signature in database
GPG Key ID: 362BB82B7E496B7C
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ stdenv, fetchPypi, buildPythonPackage, hidapi
, pycrypto, pillow, protobuf, future, ecpy
}:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "ledgerblue";
version = "0.1.13";
src = fetchPypi {
inherit pname version;
sha256 = "09bsiylvgax6m47w8r0myaf61xj9j0h1spvadx6fx31qy0iqicw0";
};
buildInputs = [ hidapi pycrypto pillow protobuf future ecpy ];
meta = with stdenv.lib; {
description = "Python library to communicate with Ledger Blue/Nano S";
homepage = "https://github.com/LedgerHQ/blue-loader-python";
license = licenses.asl20;
maintainers = with maintainers; [ np ];
};
}

View File

@ -29632,6 +29632,8 @@ EOF
mnemonic = callPackage ../development/python-modules/mnemonic.nix { };
ledgerblue = callPackage ../development/python-modules/ledgerblue { };
ecpy = callPackage ../development/python-modules/ecpy { };
trezor = callPackage ../development/python-modules/trezor.nix { };