2021-07-31 00:57:28 +02:00
|
|
|
{ python3Packages, fetchFromGitHub, lib, yubikey-personalization, libu2f-host, libusb1 }:
|
2017-03-19 10:16:22 +01:00
|
|
|
|
2019-01-17 22:17:12 +01:00
|
|
|
python3Packages.buildPythonPackage rec {
|
2019-03-12 22:40:29 +01:00
|
|
|
pname = "yubikey-manager";
|
2021-07-31 00:57:28 +02:00
|
|
|
version = "4.0.5";
|
2017-03-19 10:16:22 +01:00
|
|
|
|
2021-07-31 00:57:28 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
repo = "yubikey-manager";
|
|
|
|
rev = version;
|
|
|
|
owner = "Yubico";
|
|
|
|
sha256 = "sha256:0ycp7k6lkxzqwkc16fifhyqaqi7hl3351pwddsn18r5l83jnzdn2";
|
2017-03-19 10:16:22 +01:00
|
|
|
};
|
|
|
|
|
2021-07-31 00:57:28 +02:00
|
|
|
format = "pyproject";
|
|
|
|
|
|
|
|
nativeBuildInputs = with python3Packages; [ poetry-core ];
|
|
|
|
|
2017-03-19 10:16:22 +01:00
|
|
|
propagatedBuildInputs =
|
2019-01-17 22:17:12 +01:00
|
|
|
with python3Packages; [
|
2017-03-19 10:16:22 +01:00
|
|
|
click
|
|
|
|
cryptography
|
|
|
|
pyscard
|
|
|
|
pyusb
|
2017-09-10 05:07:14 +02:00
|
|
|
pyopenssl
|
2017-03-19 10:16:22 +01:00
|
|
|
six
|
2018-06-28 16:08:27 +02:00
|
|
|
fido2
|
2017-03-19 10:16:22 +01:00
|
|
|
] ++ [
|
|
|
|
libu2f-host
|
|
|
|
libusb1
|
|
|
|
yubikey-personalization
|
|
|
|
];
|
|
|
|
|
|
|
|
makeWrapperArgs = [
|
2018-12-02 19:23:31 +01:00
|
|
|
"--prefix" "LD_LIBRARY_PATH" ":"
|
|
|
|
(lib.makeLibraryPath [ libu2f-host libusb1 yubikey-personalization ])
|
2017-03-19 10:16:22 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
postInstall = ''
|
2019-05-30 21:32:14 +02:00
|
|
|
mkdir -p "$out/man/man1"
|
|
|
|
cp man/ykman.1 "$out/man/man1"
|
|
|
|
|
2018-12-02 19:23:31 +01:00
|
|
|
mkdir -p $out/share/bash-completion/completions
|
|
|
|
_YKMAN_COMPLETE=source $out/bin/ykman > $out/share/bash-completion/completions/ykman || :
|
2019-05-30 21:32:14 +02:00
|
|
|
mkdir -p $out/share/zsh/site-functions/
|
|
|
|
_YKMAN_COMPLETE=source_zsh "$out/bin/ykman" > "$out/share/zsh/site-functions/_ykman" || :
|
|
|
|
substituteInPlace "$out/share/zsh/site-functions/_ykman" \
|
|
|
|
--replace 'compdef _ykman_completion ykman;' '_ykman_completion "$@"'
|
2017-03-19 10:16:22 +01:00
|
|
|
'';
|
|
|
|
|
2021-04-07 17:28:36 +02:00
|
|
|
checkInputs = with python3Packages; [ pytestCheckHook makefun ];
|
2017-09-10 05:07:14 +02:00
|
|
|
|
2017-03-19 10:16:22 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://developers.yubico.com/yubikey-manager";
|
2020-10-11 07:55:05 +02:00
|
|
|
description = "Command line tool for configuring any YubiKey over all USB transports";
|
2018-12-02 06:29:28 +01:00
|
|
|
|
2017-03-19 10:16:22 +01:00
|
|
|
license = licenses.bsd2;
|
|
|
|
platforms = platforms.unix;
|
2019-01-17 22:19:43 +01:00
|
|
|
maintainers = with maintainers; [ benley mic92 ];
|
2017-03-19 10:16:22 +01:00
|
|
|
};
|
|
|
|
}
|