nixpkgs/pkgs/tools/misc/yubikey-manager/default.nix

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

69 lines
2.0 KiB
Nix
Raw Normal View History

{ python3Packages, fetchFromGitHub, lib, yubikey-personalization, libu2f-host, libusb1, procps
2022-11-01 14:08:24 +00:00
, stdenv }:
2017-03-19 09:16:22 +00:00
2019-01-17 21:17:12 +00:00
python3Packages.buildPythonPackage rec {
pname = "yubikey-manager";
2023-04-26 19:04:02 +00:00
version = "5.1.1";
format = "pyproject";
2017-03-19 09:16:22 +00:00
2021-07-30 22:57:28 +00:00
src = fetchFromGitHub {
owner = "Yubico";
2023-04-26 19:04:02 +00:00
repo = "yubikey-manager";
rev = version;
hash = "sha256-rF1oOhlZP1EKiqErJ4L/otkoEvW0iA2P4g5MWCKrCO4=";
2017-03-19 09:16:22 +00:00
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace 'fido2 = ">=0.9, <1.0"' 'fido2 = ">*"'
substituteInPlace "ykman/pcsc/__init__.py" \
--replace 'pkill' '${if stdenv.isLinux then "${procps}" else "/usr"}/bin/pkill'
'';
2021-07-30 22:57:28 +00:00
nativeBuildInputs = with python3Packages; [ poetry-core ];
2017-03-19 09:16:22 +00:00
propagatedBuildInputs =
2023-02-08 07:59:39 +00:00
with python3Packages; [
2017-03-19 09:16:22 +00:00
click
cryptography
pyscard
pyusb
six
2018-06-28 14:08:27 +00:00
fido2
2022-11-01 14:08:24 +00:00
keyring
2023-02-08 07:59:39 +00:00
] ++ [
2017-03-19 09:16:22 +00:00
libu2f-host
libusb1
yubikey-personalization
];
makeWrapperArgs = [
"--prefix" "LD_LIBRARY_PATH" ":"
(lib.makeLibraryPath [ libu2f-host libusb1 yubikey-personalization ])
2017-03-19 09:16:22 +00:00
];
postInstall = ''
mkdir -p "$out/man/man1"
cp man/ykman.1 "$out/man/man1"
mkdir -p $out/share/bash-completion/completions
_YKMAN_COMPLETE=source $out/bin/ykman > $out/share/bash-completion/completions/ykman || :
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
'';
nativeCheckInputs = with python3Packages; [ pytestCheckHook makefun ];
2017-03-19 09:16:22 +00:00
meta = with lib; {
homepage = "https://developers.yubico.com/yubikey-manager";
description = "Command line tool for configuring any YubiKey over all USB transports";
2017-03-19 09:16:22 +00:00
license = licenses.bsd2;
platforms = platforms.unix;
maintainers = with maintainers; [ benley lassulus pinpox ];
mainProgram = "ykman";
2017-03-19 09:16:22 +00:00
};
}