pythonPackages.libagent: init at 0.9.1

This commit is contained in:
rnhmjoj 2017-05-30 19:07:33 +02:00
parent 91a56e1be0
commit 26fbe26345
No known key found for this signature in database
GPG key ID: 362BB82B7E496B7C

View file

@ -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}";