Nicolas Benes
2026-05-15 09:57:42 +02:00
parent 97d5c158d4
commit d1969fca9e

View File

@@ -3,10 +3,8 @@
buildPythonPackage,
certifi,
cryptography,
docker,
fetchFromGitHub,
flit-core,
podman,
poetry-core,
pycryptodome,
pytestCheckHook,
python-dateutil,
@@ -16,19 +14,19 @@
buildPythonPackage rec {
pname = "nethsm";
version = "2.0.1";
version = "2.1.1";
pyproject = true;
src = fetchFromGitHub {
owner = "Nitrokey";
repo = "nethsm-sdk-py";
tag = "v${version}";
hash = "sha256-wqnyI6QmsBfQW7NbJrk92Ufw0+IFmc8/0ZsUp5XswYw=";
hash = "sha256-1bU3C8dlErDpHQIqsEabi92VPC91/wTNvZnx2dDHcmw=";
};
pythonRelaxDeps = true;
build-system = [ flit-core ];
build-system = [ poetry-core ];
dependencies = [
certifi
@@ -39,8 +37,6 @@ buildPythonPackage rec {
];
nativeCheckInputs = [
docker
podman
pycryptodome
pytestCheckHook
];