depot/third_party/nixpkgs/pkgs/development/python-modules/nitrokey/default.nix

61 lines
1,020 B
Nix

{
lib,
buildPythonPackage,
pythonOlder,
fetchPypi,
poetry-core,
cryptography,
fido2,
requests,
tlv8,
pyserial,
protobuf5,
semver,
crcmod,
hidapi,
ecdsa,
}:
buildPythonPackage rec {
pname = "nitrokey";
version = "0.2.2";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-tG6+diyrauJEzpPG33+S5o1ik3n44/443szR7vXH4gE=";
};
disabled = pythonOlder "3.9";
build-system = [ poetry-core ];
dependencies = [
fido2
requests
semver
tlv8
crcmod
cryptography
hidapi
ecdsa
protobuf5
pyserial
];
# no tests
doCheck = false;
pythonImportsCheck = [ "nitrokey" ];
meta = with lib; {
description = "Python SDK for Nitrokey devices";
homepage = "https://github.com/Nitrokey/nitrokey-sdk-py";
changelog = "https://github.com/Nitrokey/nitrokey-sdk-py/releases/tag/v${version}";
license = with licenses; [
asl20
mit
];
maintainers = with maintainers; [ panicgh ];
};
}