Files
nixpkgs/pkgs/development/python-modules/nethsm/default.nix
Marcin Serwin 990286f941 maintainers: drop frogamic
Signed-off-by: Marcin Serwin <marcin@serwin.dev>
2026-06-04 14:13:11 +02:00

64 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
certifi,
cryptography,
fetchFromGitHub,
poetry-core,
pycryptodome,
pytestCheckHook,
python-dateutil,
typing-extensions,
urllib3,
}:
buildPythonPackage rec {
pname = "nethsm";
version = "2.1.1";
pyproject = true;
src = fetchFromGitHub {
owner = "Nitrokey";
repo = "nethsm-sdk-py";
tag = "v${version}";
hash = "sha256-1bU3C8dlErDpHQIqsEabi92VPC91/wTNvZnx2dDHcmw=";
};
pythonRelaxDeps = true;
build-system = [ poetry-core ];
dependencies = [
certifi
cryptography
python-dateutil
typing-extensions
urllib3
];
nativeCheckInputs = [
pycryptodome
pytestCheckHook
];
pythonImportsCheck = [ "nethsm" ];
disabledTestPaths = [
# Tests require a running Docker instance
"tests/test_nethsm_config.py"
"tests/test_nethsm_keys.py"
"tests/test_nethsm_namespaces.py"
"tests/test_nethsm_other.py"
"tests/test_nethsm_system.py"
"tests/test_nethsm_users.py"
];
meta = {
description = "Client-side Python SDK for NetHSM";
homepage = "https://github.com/Nitrokey/nethsm-sdk-py";
changelog = "https://github.com/Nitrokey/nethsm-sdk-py/releases/tag/${src.tag}";
license = lib.licenses.asl20;
maintainers = [ ];
};
}