depot/third_party/nixpkgs/pkgs/development/python-modules/pynitrokey/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

110 lines
2 KiB
Nix

{
lib,
buildPythonPackage,
fetchPypi,
installShellFiles,
libnitrokey,
flit-core,
certifi,
cffi,
click,
cryptography,
ecdsa,
fido2,
intelhex,
nkdfu,
python-dateutil,
pyusb,
requests,
spsdk,
tqdm,
tlv8,
typing-extensions,
pyserial,
protobuf,
click-aliases,
semver,
nethsm,
importlib-metadata,
}:
let
pname = "pynitrokey";
version = "0.4.49";
mainProgram = "nitropy";
in
buildPythonPackage {
inherit pname version;
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-lYdrqXdB5ATFQZMUIMebpIng26ZuZW3zRnQPXiO+uTY=";
};
propagatedBuildInputs = [
certifi
cffi
click
cryptography
ecdsa
fido2
intelhex
nkdfu
python-dateutil
pyusb
requests
spsdk
tqdm
tlv8
typing-extensions
pyserial
protobuf
click-aliases
semver
nethsm
importlib-metadata
];
nativeBuildInputs = [
flit-core
installShellFiles
];
pythonRelaxDeps = true;
# pythonRelaxDepsHook runs in postBuild so cannot be used
pypaBuildFlags = [ "--skip-dependency-check" ];
# libnitrokey is not propagated to users of the pynitrokey Python package.
# It is only usable from the wrapped bin/nitropy
makeWrapperArgs = [ "--set LIBNK_PATH ${lib.makeLibraryPath [ libnitrokey ]}" ];
# no tests
doCheck = false;
pythonImportsCheck = [ "pynitrokey" ];
postInstall = ''
installShellCompletion --cmd ${mainProgram} \
--bash <(_NITROPY_COMPLETE=bash_source $out/bin/${mainProgram}) \
--zsh <(_NITROPY_COMPLETE=zsh_source $out/bin/${mainProgram}) \
--fish <(_NITROPY_COMPLETE=fish_source $out/bin/${mainProgram})
'';
meta = with lib; {
description = "Python client for Nitrokey devices";
homepage = "https://github.com/Nitrokey/pynitrokey";
changelog = "https://github.com/Nitrokey/pynitrokey/releases/tag/v${version}";
license = with licenses; [
asl20
mit
];
maintainers = with maintainers; [
frogamic
raitobezarius
];
inherit mainProgram;
};
}