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:
parent
44372e764f
commit
ab35dc29eb
@ -20,7 +20,6 @@ env:
|
|||||||
matrix:
|
matrix:
|
||||||
- PKG=nodeinfo STABLE=1
|
- PKG=nodeinfo STABLE=1
|
||||||
- PKG=hwi STABLE=1
|
- PKG=hwi STABLE=1
|
||||||
- PKG=hwi STABLE=0
|
|
||||||
- PKG=lightning-charge STABLE=1
|
- PKG=lightning-charge STABLE=1
|
||||||
- PKG=lightning-charge STABLE=0
|
- PKG=lightning-charge STABLE=0
|
||||||
- PKG=nanopos STABLE=1
|
- PKG=nanopos STABLE=1
|
||||||
|
@ -1,20 +1,20 @@
|
|||||||
{ stdenv, fetchurl, fetchFromGitHub, python35 }:
|
{ stdenv, fetchurl, fetchFromGitHub, python3 }:
|
||||||
|
|
||||||
with stdenv.lib;
|
with stdenv.lib;
|
||||||
with python35.pkgs;
|
with python3.pkgs;
|
||||||
|
|
||||||
let
|
let
|
||||||
buildInputs = [ mnemonic ecdsa typing-extensions hidapi libusb1 pyaes ];
|
buildInputs = [ mnemonic ecdsa typing-extensions hidapi libusb1 pyaes ];
|
||||||
in
|
in
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "hwi";
|
pname = "hwi";
|
||||||
version = "1.0.1";
|
version = "1.0.3";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "bitcoin-core";
|
owner = "bitcoin-core";
|
||||||
repo = "HWI";
|
repo = "HWI";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "0m3p72r8ghzwwsmc7y0dzxn0wzaplqqq1q0cd327fnnljddp5b10";
|
sha256 = "1xb8w6w6j6vv2ik2bb25y2w6m0gikmh5446jar0frfp6r6das5nn";
|
||||||
};
|
};
|
||||||
|
|
||||||
# TODO: enable tests
|
# TODO: enable tests
|
||||||
|
Loading…
Reference in New Issue
Block a user