33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
68 lines
2 KiB
Nix
68 lines
2 KiB
Nix
{ python3Packages, fetchFromGitHub, lib, yubikey-personalization, libu2f-host, libusb1, procps
|
|
, stdenv }:
|
|
|
|
python3Packages.buildPythonPackage rec {
|
|
pname = "yubikey-manager";
|
|
version = "5.0.0";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
repo = "yubikey-manager";
|
|
rev = "refs/tags/${version}";
|
|
owner = "Yubico";
|
|
sha256 = "sha256-ZQQhRiUsQwLaOY8NCzSc/PTmRewTL0ECBKj7Uj+6Gn8=";
|
|
};
|
|
|
|
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'
|
|
'';
|
|
|
|
nativeBuildInputs = with python3Packages; [ poetry-core ];
|
|
|
|
propagatedBuildInputs =
|
|
with python3Packages; ([
|
|
click
|
|
cryptography
|
|
pyscard
|
|
pyusb
|
|
six
|
|
fido2
|
|
keyring
|
|
]) ++ [
|
|
libu2f-host
|
|
libusb1
|
|
yubikey-personalization
|
|
];
|
|
|
|
makeWrapperArgs = [
|
|
"--prefix" "LD_LIBRARY_PATH" ":"
|
|
(lib.makeLibraryPath [ libu2f-host libusb1 yubikey-personalization ])
|
|
];
|
|
|
|
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 "$@"'
|
|
'';
|
|
|
|
nativeCheckInputs = with python3Packages; [ pytestCheckHook makefun ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://developers.yubico.com/yubikey-manager";
|
|
description = "Command line tool for configuring any YubiKey over all USB transports";
|
|
|
|
license = licenses.bsd2;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ benley lassulus pinpox ];
|
|
mainProgram = "ykman";
|
|
};
|
|
}
|