about summary refs log tree commit diff
path: root/pkgs/development/python-modules/trezor_agent/default.nix
blob: 6d0835b431c68e17aef420df4382764aa3925e59 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ stdenv
, buildPythonPackage
, fetchPypi
, trezor
, libagent
, ecdsa
, ed25519
, mnemonic
, keepkey
, semver
}:

buildPythonPackage rec{
  pname = "trezor_agent";
  version = "0.9.3";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0c1ef62903534d8b01260dbd6304780e278bc83e0bc21f6a83beee76e48e1580";
  };

  propagatedBuildInputs = [ trezor libagent ecdsa ed25519 mnemonic keepkey semver ];

  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 ];
  };

}