Commit 89e77823 authored by afreakk's avatar afreakk
Browse files

libagent: 0.14.4 -> 0.14.5

parent 650cb466
Loading
Loading
Loading
Loading
+22 −0
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
  pname = "bech32";
  version = "1.2.0";

  disabled = pythonOlder "3.5";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-fW24IUYDvXhx/PpsCCbvaLhbCr2Q+iHChanF4h0r2Jk=";
  };

  meta = with lib; {
    homepage = "https://pypi.org/project/bech32/";
    license = with licenses; [ mit ];
  };
}
+34 −7
Original line number Diff line number Diff line
{ lib, fetchFromGitHub, buildPythonPackage, ed25519, ecdsa , semver, mnemonic
, unidecode, mock, pytest , backports-shutil-which, configargparse
, python-daemon, pymsgbox, pynacl }:
{ lib
, fetchFromGitHub
, bech32
, buildPythonPackage
, cryptography
, ed25519
, ecdsa
, semver
, mnemonic
, unidecode
, mock
, pytest
, backports-shutil-which
, configargparse
, python-daemon
, pymsgbox
, pynacl
}:

# XXX: when changing this package, please test the package onlykey-agent.

buildPythonPackage rec {
  pname = "libagent";
  version = "0.14.4";
  version = "0.14.5";

  src = fetchFromGitHub {
    owner = "romanz";
    repo = "trezor-agent";
    rev = "v${version}";
    sha256 = "1ksv494xpga27ifrjyn1bkqaya5h769lqb9rx1ng0n4kvmnrqr3l";
    sha256 = "sha256-RISAy0efdatr9u4CWNRGnlffkC8ksw1NyRpJWKwqz+s=";
  };

  propagatedBuildInputs = [ unidecode backports-shutil-which configargparse
    python-daemon pymsgbox ecdsa ed25519 mnemonic semver pynacl ];
  propagatedBuildInputs = [
    unidecode
    backports-shutil-which
    configargparse
    python-daemon
    pymsgbox
    ecdsa
    ed25519
    mnemonic
    semver
    pynacl
    bech32
    cryptography
  ];

  checkInputs = [ mock pytest ];

+2 −0
Original line number Diff line number Diff line
@@ -1227,6 +1227,8 @@ in {

  beautifultable = callPackage ../development/python-modules/beautifultable { };

  bech32 = callPackage ../development/python-modules/bech32 { };

  bedup = callPackage ../development/python-modules/bedup { };

  behave = callPackage ../development/python-modules/behave { };