pythonPackages.trezor: 0.7.4 -> 0.7.12

This commit is contained in:
Joachim Fasting 2017-03-11 13:49:23 +01:00
parent 286917bfc9
commit 10a0f1c2af
No known key found for this signature in database
GPG Key ID: 7544761007FE4E08
2 changed files with 27 additions and 23 deletions

@ -0,0 +1,26 @@
{ lib, fetchurl, buildPythonPackage, protobuf3_0, hidapi, ecdsa, mnemonic }:
buildPythonPackage rec {
pname = "trezor";
version = "0.7.12";
name = "${pname}-${version}";
src = fetchurl {
url = "mirror://pypi/t/${pname}/${name}.tar.gz";
sha256 = "0ryqdk13x60qq5s68i9dfc1na4dka66kdxqycxignzg9k9ykaa8g";
};
propagatedBuildInputs = [ protobuf3_0 hidapi ];
buildInputs = [ ecdsa mnemonic ];
# There are no actual tests: "ImportError: No module named tests"
doCheck = false;
meta = {
description = "Python library for communicating with TREZOR Bitcoin Hardware Wallet";
homepage = https://github.com/trezor/python-trezor;
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ np ];
};
}

@ -30799,29 +30799,7 @@ EOF
};
};
trezor = buildPythonPackage rec{
version = "0.7.4";
name = "trezor-${version}";
src = pkgs.fetchurl {
url = "mirror://pypi/t/trezor/${name}.tar.gz";
sha256 = "18nr76jkdg24sb3r8cfbiq12b95gnh0amc0r1wx9mmg3pwq6jx6y";
};
propagatedBuildInputs = with self; [ protobuf3_0 hidapi ];
buildInputs = with self; [ ecdsa mnemonic ];
# There are no actual tests: "ImportError: No module named tests"
doCheck = false;
meta = {
description = "Python library for communicating with TREZOR Bitcoin Hardware Wallet";
homepage = https://github.com/trezor/python-trezor;
license = licenses.gpl3;
maintainers = with maintainers; [ np ];
};
};
trezor = callPackage ../development/python-modules/trezor.nix { };
keepkey = buildPythonPackage rec{
version = "0.7.3";