nixpkgs/pkgs/tools/security/onlykey-cli/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
779 B
Nix
Raw Normal View History

{ lib, python3Packages, fetchPypi }:
2020-11-04 16:31:55 +00:00
python3Packages.buildPythonApplication rec {
pname = "onlykey-cli";
2022-05-24 04:48:26 +01:00
version = "1.2.9";
2020-11-04 16:31:55 +00:00
src = fetchPypi {
2020-11-04 16:31:55 +00:00
inherit version;
pname = "onlykey";
2022-05-24 04:48:26 +01:00
sha256 = "sha256-92CzDZgtmww0eABtjeBo6HNQ00sijWakjXLPJiOXY/A=";
2020-11-04 16:31:55 +00:00
};
2021-08-19 03:54:50 +01:00
propagatedBuildInputs = with python3Packages; [
aenum
cython
ecdsa
hidapi
onlykey-solo-python
prompt-toolkit
pynacl
six
];
2020-11-04 16:31:55 +00:00
# Requires having the physical onlykey (a usb security key)
doCheck = false;
2021-08-19 03:54:50 +01:00
pythonImportsCheck = [ "onlykey.cli" ];
2020-11-04 16:31:55 +00:00
meta = with lib; {
description = "OnlyKey client and command-line tool";
homepage = "https://github.com/trustcrypto/python-onlykey";
license = licenses.mit;
maintainers = with maintainers; [ ranfdev ];
};
}