depot/third_party/nixpkgs/pkgs/development/python-modules/keepkey_agent/default.nix
Default email a5adf1ddd8 Project import generated by Copybara.
GitOrigin-RevId: b3616bd96400ce0252c241d76fcafb64389defc6
2021-01-15 23:18:51 +01:00

32 lines
663 B
Nix

{ lib, 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
];
doCheck = false;
pythonImportsChecks = [ "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 ];
};
}