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

34 lines
831 B
Nix
Raw Normal View History

2017-11-07 18:59:24 +01:00
{ stdenv, fetchFromGitHub, buildPythonPackage, pytest
, ecdsa , mnemonic, protobuf, hidapi, trezor }:
buildPythonPackage rec {
pname = "keepkey";
2017-11-07 18:59:24 +01:00
version = "4.0.0";
2017-11-07 18:59:24 +01:00
src = fetchFromGitHub {
owner = "keepkey";
repo = "python-keepkey";
rev = "v${version}";
sha256 = "144awjkc169z2n1ffirs697y6m97izh3pbh3sjhy3nji7jszh592";
};
2017-11-07 18:59:24 +01:00
propagatedBuildInputs = [ protobuf hidapi trezor ];
buildInputs = [ ecdsa mnemonic ];
2017-11-07 18:59:24 +01:00
checkInputs = [ pytest ];
# tests requires hardware
doCheck = false;
# Remove impossible dependency constraint
postPatch = "sed -i -e 's|hidapi==|hidapi>=|' setup.py";
meta = with stdenv.lib; {
description = "KeepKey Python client";
homepage = https://github.com/keepkey/python-keepkey;
license = licenses.gpl3;
maintainers = with maintainers; [ np ];
};
}