From c230f91cdc3ec4ceb96301c0fc1e2222c8003412 Mon Sep 17 00:00:00 2001 From: Florian Brandes Date: Sun, 31 May 2026 11:05:39 +0200 Subject: [PATCH] python3Packages.zipstream-ng: 1.9.0 -> 1.9.2 Diff: https://github.com/pR0Ps/zipstream-ng/compare/v1.9.0...v1.9.2 Changelog: https://github.com/pR0Ps/zipstream-ng/blob/v1.9.2/CHANGELOG.md Signed-off-by: Florian Brandes --- pkgs/development/python-modules/zipstream-ng/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/zipstream-ng/default.nix b/pkgs/development/python-modules/zipstream-ng/default.nix index 7d1308d929ca..9d1f9e2660c1 100644 --- a/pkgs/development/python-modules/zipstream-ng/default.nix +++ b/pkgs/development/python-modules/zipstream-ng/default.nix @@ -3,22 +3,22 @@ buildPythonPackage, fetchFromGitHub, pytestCheckHook, - setuptools, + hatchling, }: buildPythonPackage rec { pname = "zipstream-ng"; - version = "1.9.0"; + version = "1.9.2"; pyproject = true; src = fetchFromGitHub { owner = "pR0Ps"; repo = "zipstream-ng"; tag = "v${version}"; - hash = "sha256-dkSTZkj6Rx6OMdlX4oDOydetosf/iEJhlARmEc0W9gQ="; + hash = "sha256-1MSnabckpAwV/NmD5wKxF7k7hwve6fBiCPyw7skxdlM="; }; - build-system = [ setuptools ]; + build-system = [ hatchling ]; pythonImportsCheck = [ "zipstream" ];