Merge pull request #247883 from NickCao/yubikey-manager
This commit is contained in:
commit
e04428a3a8
1 changed files with 32 additions and 32 deletions
|
@ -1,5 +1,10 @@
|
||||||
{ python3Packages, fetchFromGitHub, lib, yubikey-personalization, libu2f-host, libusb1, procps
|
{ lib
|
||||||
, stdenv }:
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, python3Packages
|
||||||
|
, installShellFiles
|
||||||
|
, procps
|
||||||
|
}:
|
||||||
|
|
||||||
python3Packages.buildPythonPackage rec {
|
python3Packages.buildPythonPackage rec {
|
||||||
pname = "yubikey-manager";
|
pname = "yubikey-manager";
|
||||||
|
@ -14,55 +19,50 @@ python3Packages.buildPythonPackage rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace pyproject.toml \
|
|
||||||
--replace 'fido2 = ">=0.9, <1.0"' 'fido2 = ">*"'
|
|
||||||
substituteInPlace "ykman/pcsc/__init__.py" \
|
substituteInPlace "ykman/pcsc/__init__.py" \
|
||||||
--replace 'pkill' '${if stdenv.isLinux then "${procps}" else "/usr"}/bin/pkill'
|
--replace 'pkill' '${if stdenv.isLinux then "${procps}" else "/usr"}/bin/pkill'
|
||||||
'';
|
'';
|
||||||
|
|
||||||
nativeBuildInputs = with python3Packages; [ poetry-core ];
|
nativeBuildInputs = with python3Packages; [
|
||||||
|
poetry-core
|
||||||
propagatedBuildInputs =
|
pythonRelaxDepsHook
|
||||||
with python3Packages; [
|
installShellFiles
|
||||||
click
|
|
||||||
cryptography
|
|
||||||
pyscard
|
|
||||||
pyusb
|
|
||||||
six
|
|
||||||
fido2
|
|
||||||
keyring
|
|
||||||
] ++ [
|
|
||||||
libu2f-host
|
|
||||||
libusb1
|
|
||||||
yubikey-personalization
|
|
||||||
];
|
];
|
||||||
|
|
||||||
makeWrapperArgs = [
|
propagatedBuildInputs = with python3Packages; [
|
||||||
"--prefix" "LD_LIBRARY_PATH" ":"
|
cryptography
|
||||||
(lib.makeLibraryPath [ libu2f-host libusb1 yubikey-personalization ])
|
pyscard
|
||||||
|
fido2
|
||||||
|
click
|
||||||
|
keyring
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonRelaxDeps = [
|
||||||
|
"keyring"
|
||||||
];
|
];
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
mkdir -p "$out/man/man1"
|
installManPage man/ykman.1
|
||||||
cp man/ykman.1 "$out/man/man1"
|
|
||||||
|
|
||||||
mkdir -p $out/share/bash-completion/completions
|
installShellCompletion --cmd ykman \
|
||||||
_YKMAN_COMPLETE=source $out/bin/ykman > $out/share/bash-completion/completions/ykman || :
|
--bash <(_YKMAN_COMPLETE=bash_source "$out/bin/ykman") \
|
||||||
mkdir -p $out/share/zsh/site-functions/
|
--zsh <(_YKMAN_COMPLETE=zsh_source "$out/bin/ykman") \
|
||||||
_YKMAN_COMPLETE=source_zsh "$out/bin/ykman" > "$out/share/zsh/site-functions/_ykman" || :
|
--fish <(_YKMAN_COMPLETE=fish_source "$out/bin/ykman") \
|
||||||
substituteInPlace "$out/share/zsh/site-functions/_ykman" \
|
|
||||||
--replace 'compdef _ykman_completion ykman;' '_ykman_completion "$@"'
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
nativeCheckInputs = with python3Packages; [ pytestCheckHook makefun ];
|
nativeCheckInputs = with python3Packages; [
|
||||||
|
pytestCheckHook
|
||||||
|
makefun
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://developers.yubico.com/yubikey-manager";
|
homepage = "https://developers.yubico.com/yubikey-manager";
|
||||||
|
changelog = "https://github.com/Yubico/yubikey-manager/releases/tag/${version}";
|
||||||
description = "Command line tool for configuring any YubiKey over all USB transports";
|
description = "Command line tool for configuring any YubiKey over all USB transports";
|
||||||
|
|
||||||
license = licenses.bsd2;
|
license = licenses.bsd2;
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
maintainers = with maintainers; [ benley lassulus pinpox ];
|
maintainers = with maintainers; [ benley lassulus pinpox nickcao ];
|
||||||
mainProgram = "ykman";
|
mainProgram = "ykman";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue