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

49 lines
1.2 KiB
Nix
Raw Normal View History

2019-01-17 22:17:12 +01:00
{ python3Packages, fetchurl, lib,
2017-03-19 10:16:22 +01:00
yubikey-personalization, libu2f-host, libusb1 }:
2019-01-17 22:17:12 +01:00
python3Packages.buildPythonPackage rec {
name = "yubikey-manager-2.0.0";
2017-03-19 10:16:22 +01:00
srcs = fetchurl {
url = "https://developers.yubico.com/yubikey-manager/Releases/${name}.tar.gz";
2019-01-17 22:17:12 +01:00
sha256 = "1x36pyg9g3by2pa11j6d73d79sdlb7qy98lwwn05f43fjm74qnz9";
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
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 = [
"--prefix" "LD_LIBRARY_PATH" ":"
(lib.makeLibraryPath [ libu2f-host libusb1 yubikey-personalization ])
2017-03-19 10:16:22 +01:00
];
postInstall = ''
mkdir -p $out/share/bash-completion/completions
_YKMAN_COMPLETE=source $out/bin/ykman > $out/share/bash-completion/completions/ykman || :
2017-03-19 10:16:22 +01:00
'';
# See https://github.com/NixOS/nixpkgs/issues/29169
doCheck = false;
2017-03-19 10:16:22 +01: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 10:16:22 +01:00
license = licenses.bsd2;
platforms = platforms.unix;
maintainers = with maintainers; [ benley ];
};
}