blob: 96da71f35b7d78c880571bb369f41d9ade9657f4 (
plain)
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
32
33
34
35
36
37
38
39
40
41
42
|
{
lib,
buildPythonPackage,
fetchPypi,
keepkey,
setuptools,
libagent,
wheel,
}:
buildPythonPackage rec {
pname = "keepkey-agent";
version = "0.9.0";
format = "setuptools";
src = fetchPypi {
pname = "keepkey_agent";
inherit version;
sha256 = "03779gvlx70i0nnry98i4pl1d92604ix5x6jgdfkrdgzqbh5vj27";
};
propagatedBuildInputs = [
keepkey
libagent
setuptools
wheel
];
doCheck = false;
pythonImportsCheck = [ "keepkey_agent" ];
meta = {
description = "Using KeepKey as hardware-based SSH/PGP agent";
homepage = "https://github.com/romanz/trezor-agent";
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [
hkjn
np
mmahut
];
};
}
|