summary refs log tree commit diff
path: root/pkgs/development/python-modules/keepkey_agent/default.nix
blob: c2361043e41977039ce63fd50e7015709e6c3aac (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
{ stdenv
, buildPythonPackage
, fetchPypi
, keepkey
, setuptools
, libagent
, wheel
}:

buildPythonPackage rec {
  pname = "keepkey_agent";
  version = "0.9.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "03779gvlx70i0nnry98i4pl1d92604ix5x6jgdfkrdgzqbh5vj27";
  };

  propagatedBuildInputs = [
    keepkey libagent setuptools wheel
  ];

  meta = with stdenv.lib; {
    description = "Using KeepKey as hardware-based SSH/PGP agent";
    homepage = https://github.com/romanz/trezor-agent;
    license = licenses.gpl3;
    maintainers = with maintainers; [ hkjn np mmahut ];
  };
}