This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
48 lines
1003 B
Nix
48 lines
1003 B
Nix
{
|
|
lib,
|
|
python3Packages,
|
|
fetchPypi,
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "onlykey-cli";
|
|
version = "1.2.10";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "onlykey";
|
|
hash = "sha256-ZmQnyZx9YlIIxMMdZ0U2zb+QANfcwrtG7iR1LpgzmBQ=";
|
|
};
|
|
|
|
build-system = with python3Packages; [
|
|
setuptools
|
|
];
|
|
|
|
pythonRemoveDeps = [
|
|
"Cython" # don't know why cython is listed as a runtime dependency, let's just remove it
|
|
];
|
|
|
|
dependencies = with python3Packages; [
|
|
aenum
|
|
ecdsa
|
|
hidapi
|
|
onlykey-solo-python
|
|
prompt-toolkit
|
|
pynacl
|
|
six
|
|
];
|
|
|
|
# Requires having the physical onlykey (a usb security key)
|
|
doCheck = false;
|
|
pythonImportsCheck = [ "onlykey.client" ];
|
|
|
|
meta = {
|
|
description = "OnlyKey client and command-line tool";
|
|
mainProgram = "onlykey-cli";
|
|
homepage = "https://github.com/trustcrypto/python-onlykey";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ ranfdev ];
|
|
};
|
|
}
|