pythonPackages.trezor: 0.7.4 -> 0.7.12
This commit is contained in:
parent
286917bfc9
commit
10a0f1c2af
26
pkgs/development/python-modules/trezor.nix
Normal file
26
pkgs/development/python-modules/trezor.nix
Normal file
@ -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{
|
trezor = callPackage ../development/python-modules/trezor.nix { };
|
||||||
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 ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
keepkey = buildPythonPackage rec{
|
keepkey = buildPythonPackage rec{
|
||||||
version = "0.7.3";
|
version = "0.7.3";
|
||||||
|
Loading…
Reference in New Issue
Block a user