Merge pull request #67988 from mmahut/trezor-agent

pythonPackages.trezor_agent: adding buildInputs required for GPG
This commit is contained in:
Marek Mahut 2019-09-04 10:46:14 +02:00 committed by GitHub
commit 1d8a3973f4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,6 +8,8 @@
, mnemonic
, keepkey
, semver
, wheel
, pinentry
}:
buildPythonPackage rec{
@ -19,13 +21,13 @@ buildPythonPackage rec{
sha256 = "e82bf000c1178b1a7612f2a90487eb34c6234d2edb15dc8e310ad875d8298690";
};
propagatedBuildInputs = [ trezor libagent ecdsa ed25519 mnemonic keepkey semver ];
propagatedBuildInputs = [ 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;
homepage = "https://github.com/romanz/trezor-agent";
license = licenses.gpl3;
maintainers = with maintainers; [ np ];
maintainers = with maintainers; [ np mmahut ];
};
}