nixpkgs/pkgs/development/python-modules/trezor/default.nix

27 lines
734 B
Nix
Raw Normal View History

{ lib, fetchPypi, buildPythonPackage, protobuf3_0, hidapi, ecdsa, mnemonic }:
2017-03-11 12:49:23 +00:00
buildPythonPackage rec {
name = "${pname}-${version}";
2017-03-11 12:49:23 +00:00
pname = "trezor";
2017-06-19 11:43:19 +00:00
version = "0.7.15";
2017-03-11 12:49:23 +00:00
src = fetchPypi {
inherit pname version;
2017-06-19 11:43:19 +00:00
sha256 = "f7e4f509263ca172532b4c0a440d164add7cdc021b4370a253d51eba5806b618";
2017-03-11 12:49:23 +00:00
};
propagatedBuildInputs = [ protobuf3_0 hidapi ];
buildInputs = [ ecdsa mnemonic ];
# There are no actual tests: "ImportError: No module named tests"
doCheck = false;
2017-05-31 06:33:02 +00:00
meta = {
2017-03-11 12:49:23 +00:00
description = "Python library for communicating with TREZOR Bitcoin Hardware Wallet";
homepage = https://github.com/trezor/python-trezor;
2017-05-31 06:33:02 +00:00
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ np ];
2017-03-11 12:49:23 +00:00
};
}