b24ae02ebb
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-keepkey/versions
34 lines
831 B
Nix
34 lines
831 B
Nix
{ stdenv, fetchFromGitHub, buildPythonPackage, pytest
|
|
, ecdsa , mnemonic, protobuf, hidapi, trezor }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "keepkey";
|
|
version = "6.0.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "keepkey";
|
|
repo = "python-keepkey";
|
|
rev = "v${version}";
|
|
sha256 = "0jnkh1nin1lwnx32ak6sv8gzmpnkvcy6vm23wzm1ymzfndxk6rnm";
|
|
};
|
|
|
|
propagatedBuildInputs = [ protobuf hidapi trezor ];
|
|
|
|
buildInputs = [ ecdsa mnemonic ];
|
|
|
|
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 ];
|
|
};
|
|
}
|