2021-09-10 11:50:09 +00:00
|
|
|
{ python3Packages, fetchFromGitHub, lib, yubikey-personalization, libu2f-host, libusb1, procps }:
|
2017-03-19 09:16:22 +00:00
|
|
|
|
2019-01-17 21:17:12 +00:00
|
|
|
python3Packages.buildPythonPackage rec {
|
2019-03-12 21:40:29 +00:00
|
|
|
pname = "yubikey-manager";
|
2022-02-02 05:52:30 +00:00
|
|
|
version = "4.0.8";
|
2022-01-11 23:01:53 +00:00
|
|
|
format = "pyproject";
|
2017-03-19 09:16:22 +00:00
|
|
|
|
2021-07-30 22:57:28 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
repo = "yubikey-manager";
|
|
|
|
rev = version;
|
|
|
|
owner = "Yubico";
|
2022-02-02 05:52:30 +00:00
|
|
|
sha256 = "sha256-OszXOu/NhoX4WutsT4Z1LsY54KTOWRKt13yDo2fzDbA=";
|
2017-03-19 09:16:22 +00:00
|
|
|
};
|
|
|
|
|
2021-09-10 11:50:09 +00:00
|
|
|
postPatch = ''
|
2022-01-11 23:01:53 +00:00
|
|
|
substituteInPlace pyproject.toml \
|
2022-06-08 21:15:14 +00:00
|
|
|
--replace 'fido2 = ">=0.9, <1.0"' 'fido2 = ">*"'
|
2021-09-10 11:50:09 +00:00
|
|
|
substituteInPlace "ykman/pcsc/__init__.py" \
|
2022-01-11 23:01:53 +00:00
|
|
|
--replace 'pkill' '${procps}/bin/pkill'
|
2021-09-10 11:50:09 +00:00
|
|
|
'';
|
|
|
|
|
2021-07-30 22:57:28 +00:00
|
|
|
nativeBuildInputs = with python3Packages; [ poetry-core ];
|
|
|
|
|
2017-03-19 09:16:22 +00:00
|
|
|
propagatedBuildInputs =
|
2019-01-17 21:17:12 +00:00
|
|
|
with python3Packages; [
|
2017-03-19 09:16:22 +00:00
|
|
|
click
|
|
|
|
cryptography
|
|
|
|
pyscard
|
|
|
|
pyusb
|
2017-09-10 03:07:14 +00:00
|
|
|
pyopenssl
|
2017-03-19 09:16:22 +00:00
|
|
|
six
|
2018-06-28 14:08:27 +00:00
|
|
|
fido2
|
2017-03-19 09:16:22 +00:00
|
|
|
] ++ [
|
|
|
|
libu2f-host
|
|
|
|
libusb1
|
|
|
|
yubikey-personalization
|
|
|
|
];
|
|
|
|
|
|
|
|
makeWrapperArgs = [
|
2018-12-02 18:23:31 +00:00
|
|
|
"--prefix" "LD_LIBRARY_PATH" ":"
|
|
|
|
(lib.makeLibraryPath [ libu2f-host libusb1 yubikey-personalization ])
|
2017-03-19 09:16:22 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
postInstall = ''
|
2019-05-30 19:32:14 +00:00
|
|
|
mkdir -p "$out/man/man1"
|
|
|
|
cp man/ykman.1 "$out/man/man1"
|
|
|
|
|
2018-12-02 18:23:31 +00:00
|
|
|
mkdir -p $out/share/bash-completion/completions
|
|
|
|
_YKMAN_COMPLETE=source $out/bin/ykman > $out/share/bash-completion/completions/ykman || :
|
2019-05-30 19:32:14 +00: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 09:16:22 +00:00
|
|
|
'';
|
|
|
|
|
2021-04-07 15:28:36 +00:00
|
|
|
checkInputs = with python3Packages; [ pytestCheckHook makefun ];
|
2017-09-10 03:07:14 +00:00
|
|
|
|
2017-03-19 09:16:22 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://developers.yubico.com/yubikey-manager";
|
2020-10-11 05:55:05 +00:00
|
|
|
description = "Command line tool for configuring any YubiKey over all USB transports";
|
2018-12-02 05:29:28 +00:00
|
|
|
|
2017-03-19 09:16:22 +00:00
|
|
|
license = licenses.bsd2;
|
|
|
|
platforms = platforms.unix;
|
2022-01-13 09:27:35 +00:00
|
|
|
maintainers = with maintainers; [ benley lassulus pinpox ];
|
2017-03-19 09:16:22 +00:00
|
|
|
};
|
|
|
|
}
|