From 26fbe2634545608f39e0db96476c0c9973928cfd Mon Sep 17 00:00:00 2001 From: rnhmjoj Date: Tue, 30 May 2017 19:07:33 +0200 Subject: [PATCH] pythonPackages.libagent: init at 0.9.1 --- pkgs/top-level/python-packages.nix | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b59afd7b6ef..c4d3edad665 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -29735,6 +29735,28 @@ EOF }; }; + libagent = buildPythonPackage rec { + name = "libagent-${version}"; + version = "0.9.1"; + + src = pkgs.fetchurl { + url = "mirror://pypi/l/libagent/${name}.tar.gz"; + sha256 = "1g19lsid7lqw567w31fif89w088lzbgh27xpb1pshjk1gvags3bc"; + }; + + buildInputs = with self; [ + ed25519 ecdsa semver keepkey + trezor mnemonic ledgerblue + ]; + + meta = { + description = "Using hardware wallets as SSH/GPG agent"; + homepage = "https://github.com/romanz/trezor-agent"; + license = licenses.gpl3; + maintainers = with maintainers; [ np ]; + }; + }; + x11_hash = buildPythonPackage rec{ version = "1.4"; name = "x11_hash-${version}";