onlykey-cli: update 1.2.2 -> 1.2.5
(cherry picked from commit 98f344f0da6fd9fab5dda98bb0269af8f2b61f7f)
This commit is contained in:
parent
50d1f373a3
commit
b64d6f2d3c
|
@ -2,18 +2,28 @@
|
||||||
|
|
||||||
python3Packages.buildPythonApplication rec {
|
python3Packages.buildPythonApplication rec {
|
||||||
pname = "onlykey-cli";
|
pname = "onlykey-cli";
|
||||||
version = "1.2.2";
|
version = "1.2.5";
|
||||||
|
|
||||||
src = python3Packages.fetchPypi {
|
src = python3Packages.fetchPypi {
|
||||||
inherit version;
|
inherit version;
|
||||||
pname = "onlykey";
|
pname = "onlykey";
|
||||||
sha256 = "1qkbgab5xlg7bd0jfzf8k5ppb1zhib76r050fiaqi5wibrqrfwdi";
|
sha256 = "sha256-7Pr1gXaPF5mctGxDciKKj0YDDQVFFi1+t6QztoKqpAA=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = with python3Packages; [
|
||||||
|
aenum
|
||||||
|
cython
|
||||||
|
ecdsa
|
||||||
|
hidapi
|
||||||
|
onlykey-solo-python
|
||||||
|
prompt_toolkit
|
||||||
|
pynacl
|
||||||
|
six
|
||||||
|
];
|
||||||
|
|
||||||
# Requires having the physical onlykey (a usb security key)
|
# Requires having the physical onlykey (a usb security key)
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
propagatedBuildInputs =
|
pythonImportsCheck = [ "onlykey.cli" ];
|
||||||
with python3Packages; [ hidapi aenum six prompt_toolkit pynacl ecdsa cython ];
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "OnlyKey client and command-line tool";
|
description = "OnlyKey client and command-line tool";
|
||||||
|
|
Loading…
Reference in New Issue