Update hwi 1.0.1 -> 1.0.3

Also remove unstable hwi build from travis because hwi requires mnemonic
<0.19.0 but nixpkgs unstable has 0.19.0.
This commit is contained in:
Jonas Nick 2019-11-17 14:20:35 +00:00
parent 44372e764f
commit ab35dc29eb
No known key found for this signature in database
GPG Key ID: 4861DBF262123605
2 changed files with 4 additions and 5 deletions

View File

@ -20,7 +20,6 @@ env:
matrix:
- PKG=nodeinfo STABLE=1
- PKG=hwi STABLE=1
- PKG=hwi STABLE=0
- PKG=lightning-charge STABLE=1
- PKG=lightning-charge STABLE=0
- PKG=nanopos STABLE=1

View File

@ -1,20 +1,20 @@
{ stdenv, fetchurl, fetchFromGitHub, python35 }:
{ stdenv, fetchurl, fetchFromGitHub, python3 }:
with stdenv.lib;
with python35.pkgs;
with python3.pkgs;
let
buildInputs = [ mnemonic ecdsa typing-extensions hidapi libusb1 pyaes ];
in
buildPythonPackage rec {
pname = "hwi";
version = "1.0.1";
version = "1.0.3";
src = fetchFromGitHub {
owner = "bitcoin-core";
repo = "HWI";
rev = version;
sha256 = "0m3p72r8ghzwwsmc7y0dzxn0wzaplqqq1q0cd327fnnljddp5b10";
sha256 = "1xb8w6w6j6vv2ik2bb25y2w6m0gikmh5446jar0frfp6r6das5nn";
};
# TODO: enable tests