depot/third_party/nixpkgs/pkgs/tools/security/pynitrokey/default.nix
Default email ed0c4a69f0 Project import generated by Copybara.
GitOrigin-RevId: e3652e0735fbec227f342712f180f4f21f0594f2
2023-03-31 00:05:00 +02:00

65 lines
1.2 KiB
Nix

{ python3Packages, lib, nrfutil, libnitrokey }:
with python3Packages;
buildPythonApplication rec {
pname = "pynitrokey";
version = "0.4.34";
format = "flit";
src = fetchPypi {
inherit pname version;
hash = "sha256-lMXoDkNiAmGb6e4u/vZMcmXUclwW402YUGihLjWIr+U=";
};
propagatedBuildInputs = [
certifi
cffi
click
cryptography
ecdsa
frozendict
fido2
intelhex
nkdfu
nrfutil
python-dateutil
pyusb
requests
spsdk
tqdm
urllib3
tlv8
typing-extensions
];
nativeBuildInputs = [
pythonRelaxDepsHook
];
pythonRelaxDeps = [
"cryptography"
"python-dateutil"
"spsdk"
"typing_extensions"
];
# libnitrokey is not propagated to users of pynitrokey
# It is only usable from the wrapped bin/nitropy
makeWrapperArgs = [
"--set LIBNK_PATH ${lib.makeLibraryPath [ libnitrokey ]}"
];
# no tests
doCheck = false;
pythonImportsCheck = [ "pynitrokey" ];
meta = with lib; {
description = "Python client for Nitrokey devices";
homepage = "https://github.com/Nitrokey/pynitrokey";
license = with licenses; [ asl20 mit ];
maintainers = with maintainers; [ frogamic ];
mainProgram = "nitropy";
};
}