Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: be465351b48f
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2335878b2a2a
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jun 1, 2019

  1. python-trezor: 0.11.2 -> 0.11.3

    mmahut authored and fpletz committed Jun 1, 2019
    Copy the full SHA
    2335878 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/python-modules/trezor/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/python-modules/trezor/default.nix
Original file line number Diff line number Diff line change
@@ -14,13 +14,13 @@

buildPythonPackage rec {
pname = "trezor";
version = "0.11.2";
version = "0.11.3";

disabled = !isPy3k;

src = fetchPypi {
inherit pname version;
sha256 = "a6f4b47b37a21247535fc43411cb70a8c61ef0a5a2dfee668bd05611e2741fb8";
sha256 = "c79a500e90d003073c8060d319dceb042caaba9472f13990c77ed37d04a82108";
};

propagatedBuildInputs = [ typing-extensions protobuf hidapi ecdsa mnemonic requests pyblake2 click construct libusb1 rlp ];
@@ -43,6 +43,6 @@ buildPythonPackage rec {
description = "Python library for communicating with TREZOR Bitcoin Hardware Wallet";
homepage = https://github.com/trezor/python-trezor;
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ np prusnak ];
maintainers = with lib.maintainers; [ np prusnak mmahut ];
};
}