nixpkgs/pkgs/development/python-modules/trezor_agent/default.nix
2019-10-18 12:00:38 -07:00

35 lines
694 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, trezor
, libagent
, ecdsa
, ed25519
, mnemonic
, keepkey
, semver
, setuptools
, wheel
, pinentry
}:
buildPythonPackage rec{
pname = "trezor_agent";
version = "0.10.0";
src = fetchPypi {
inherit pname version;
sha256 = "e82bf000c1178b1a7612f2a90487eb34c6234d2edb15dc8e310ad875d8298690";
};
propagatedBuildInputs = [ setuptools trezor libagent ecdsa ed25519 mnemonic keepkey semver wheel pinentry ];
meta = with stdenv.lib; {
description = "Using Trezor as hardware SSH agent";
homepage = "https://github.com/romanz/trezor-agent";
license = licenses.gpl3;
maintainers = with maintainers; [ np mmahut ];
};
}