From ff78c2c4cb4e76da17c2e7298f49fac13659cb13 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 26 Nov 2025 06:19:34 +0000 Subject: [PATCH 1/2] python3Packages.http-sf: 1.0.4 -> 1.0.7 --- pkgs/development/python-modules/http-sf/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/http-sf/default.nix b/pkgs/development/python-modules/http-sf/default.nix index fcbde1e7d21d..c548ca50b6af 100644 --- a/pkgs/development/python-modules/http-sf/default.nix +++ b/pkgs/development/python-modules/http-sf/default.nix @@ -9,7 +9,7 @@ buildPythonPackage rec { pname = "http-sf"; - version = "1.0.4"; + version = "1.0.7"; pyproject = true; disabled = pythonOlder "3.9"; @@ -18,7 +18,7 @@ buildPythonPackage rec { owner = "mnot"; repo = "http-sf"; tag = "v${version}"; - hash = "sha256-swstFntoox9cafLZ5tj02uFoReIRf+9xGOxHvga+Q5o="; + hash = "sha256-V/ZwThTNMqnqvgOs7c4JVjvGCTU15ryzTIMX2T4hUQE="; }; build-system = [ setuptools ]; From 73a304571b6c430adb3b6691d47f1c9a9350c2ec Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 26 Nov 2025 08:46:40 +0100 Subject: [PATCH 2/2] python313Packages.http-sf: modernize --- pkgs/development/python-modules/http-sf/default.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/http-sf/default.nix b/pkgs/development/python-modules/http-sf/default.nix index c548ca50b6af..345f11736317 100644 --- a/pkgs/development/python-modules/http-sf/default.nix +++ b/pkgs/development/python-modules/http-sf/default.nix @@ -2,7 +2,6 @@ lib, buildPythonPackage, fetchFromGitHub, - pythonOlder, setuptools, typing-extensions, }: @@ -12,8 +11,6 @@ buildPythonPackage rec { version = "1.0.7"; pyproject = true; - disabled = pythonOlder "3.9"; - src = fetchFromGitHub { owner = "mnot"; repo = "http-sf"; @@ -33,7 +30,7 @@ buildPythonPackage rec { meta = with lib; { description = "Module to parse and serialise HTTP structured field values"; homepage = "https://github.com/mnot/http-sf"; - changelog = "https://github.com/mnot/http-sf/releases/tag/v${version}"; + changelog = "https://github.com/mnot/http-sf/releases/tag/${src.tag}"; license = licenses.mit; maintainers = with maintainers; [ fab ]; };