-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge #166: Update nixpkgs (stable 19.09 -> 20.03)
b9f07bf test: use older qemu version for travis compatibility (Erik Arvstedt) 026a22f use python testing from stable nixpkgs (Erik Arvstedt) 45de0d4 Travis: test electrs with unstable nixpkgs as well (Jonas Nick) 2d3a1e8 electrs: fix conditional cargoSha256 (Erik Arvstedt) f5dbac3 nixops: fix format exception from upstream nixops (Jonas Nick) c03ad1c Update nixpkgs (stable 19.09 -> 20.03) (Jonas Nick) b7047c7 HWI: allow building with unstable nixpkgs (Jonas Nick) Pull request description: ACKs for top commit: nixbitcoin: ACK b9f07bf Tree-SHA512: 20766cdbe465d01b4d503e76741307a7fba403db575869c1f9cf401941b05d5afa7db735772ac235cf88a35b8e4ce49f888adfa5ee9891d4264b5ed570baaca9
- Loading branch information
Showing
9 changed files
with
85 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ stdenv | ||
, buildPythonPackage | ||
, fetchPypi | ||
, pkgs | ||
, six | ||
}: | ||
|
||
buildPythonPackage rec { | ||
pname = "ecdsa"; | ||
version = "0.13.3"; | ||
|
||
src = fetchPypi { | ||
inherit pname version; | ||
sha256 = "163c80b064a763ea733870feb96f9dd9b92216cfcacd374837af18e4e8ec3d4d"; | ||
}; | ||
|
||
propagatedBuildInputs = [ six ]; | ||
# Only needed for tests | ||
checkInputs = [ pkgs.openssl ]; | ||
|
||
meta = with stdenv.lib; { | ||
description = "ECDSA cryptographic signature library"; | ||
homepage = "https://github.com/warner/python-ecdsa"; | ||
license = licenses.mit; | ||
maintainers = with maintainers; [ aszlig ]; | ||
}; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ lib, fetchPypi, buildPythonPackage, pbkdf2 }: | ||
|
||
buildPythonPackage rec { | ||
pname = "mnemonic"; | ||
version = "0.18"; | ||
|
||
src = fetchPypi { | ||
inherit pname version; | ||
sha256 = "02a7306a792370f4a0c106c2cf1ce5a0c84b9dbd7e71c6792fdb9ad88a727f1d"; | ||
}; | ||
|
||
propagatedBuildInputs = [ pbkdf2 ]; | ||
|
||
meta = { | ||
description = "Implementation of Bitcoin BIP-0039"; | ||
homepage = "https://github.com/trezor/python-mnemonic"; | ||
license = lib.licenses.mit; | ||
maintainers = with lib.maintainers; [ np ]; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.