mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
43 lines
745 B
Nix
43 lines
745 B
Nix
{
|
|
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 = with 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
|
|
];
|
|
};
|
|
}
|