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

29 lines
747 B
Nix
Raw Normal View History

2017-09-05 17:11:41 +02:00
{ lib, fetchPypi, buildPythonPackage, protobuf, hidapi, ecdsa, mnemonic
, requests
}:
2017-03-11 13:49:23 +01:00
buildPythonPackage rec {
name = "${pname}-${version}";
2017-03-11 13:49:23 +01:00
pname = "trezor";
2018-02-17 14:23:04 +01:00
version = "0.9.0";
2017-03-11 13:49:23 +01:00
src = fetchPypi {
inherit pname version;
2018-02-17 14:23:04 +01:00
sha256 = "2dd01e11d669cb8f5e40fcf1748bcabc41fb5f41edb010fc807dc3088f9bd7de";
2017-03-11 13:49:23 +01:00
};
propagatedBuildInputs = [ protobuf hidapi requests mnemonic ];
2017-03-11 13:49:23 +01:00
buildInputs = [ ecdsa ];
2017-03-11 13:49:23 +01:00
# There are no actual tests: "ImportError: No module named tests"
doCheck = false;
2017-05-31 08:33:02 +02:00
meta = {
2017-03-11 13:49:23 +01:00
description = "Python library for communicating with TREZOR Bitcoin Hardware Wallet";
homepage = https://github.com/trezor/python-trezor;
2017-05-31 08:33:02 +02:00
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ np ];
2017-03-11 13:49:23 +01:00
};
}