From ace579453e3a98574c07946023df8cea83beb957 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 19 May 2026 22:46:36 +0200 Subject: [PATCH] python3Packages.iocx: 0.7.0 -> 0.7.3 Changelog: https://github.com/iocx-dev/iocx/releases/tag/v0.7.3 --- pkgs/development/python-modules/iocx/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/iocx/default.nix b/pkgs/development/python-modules/iocx/default.nix index fdc39b388253..1dc942482971 100644 --- a/pkgs/development/python-modules/iocx/default.nix +++ b/pkgs/development/python-modules/iocx/default.nix @@ -2,6 +2,7 @@ lib, buildPythonPackage, fetchFromGitHub, + idna, pefile, pytestCheckHook, python-magic, @@ -10,26 +11,25 @@ buildPythonPackage (finalAttrs: { pname = "iocx"; - version = "0.7.0"; + version = "0.7.3"; pyproject = true; src = fetchFromGitHub { owner = "iocx-dev"; repo = "iocx"; tag = "v${finalAttrs.version}"; - hash = "sha256-QLnlxCFVN2hxQtprNuete9iEAy3k4lxJUwbZcPhHMH0="; + hash = "sha256-cCgpkUSlXQm/F8nvpybwt27cicuDAeoHk5t4dYIAsXY="; }; build-system = [ setuptools ]; dependencies = [ + idna pefile python-magic ]; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "iocx" ];