From d69b3cb45d5d6d91284dbe92423668af92048994 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Sat, 23 May 2026 20:16:08 +0200 Subject: [PATCH] python3Packages.brother-ql: 0.11.2 -> 0.12.0 --- .../python-modules/brother-ql/default.nix | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/pkgs/development/python-modules/brother-ql/default.nix b/pkgs/development/python-modules/brother-ql/default.nix index 3a6058c9c5e5..0501cb397a41 100644 --- a/pkgs/development/python-modules/brother-ql/default.nix +++ b/pkgs/development/python-modules/brother-ql/default.nix @@ -2,7 +2,6 @@ fetchPypi, buildPythonPackage, setuptools, - future, packbits, pillow, pyusb, @@ -14,24 +13,26 @@ buildPythonPackage rec { pname = "brother-ql"; - version = "0.11.2"; + version = "0.12.0"; pyproject = true; src = fetchPypi { pname = "brother_ql_next"; inherit version; - hash = "sha256-3rTf+4W5KK7zSGIE3bBHXHE0hjyvpjB0IiEtbax6mkU="; + hash = "sha256-NTw5hlMJRoABvbteyCYF0Kopc9AjNyuwLSB+zS3RYRQ="; }; - propagatedBuildInputs = [ + build-system = [ setuptools - future + ]; + + dependencies = [ + attrs + click + jsons packbits pillow pyusb - click - attrs - jsons ]; meta = {