From a8f51370afd3386645eed84da8a45b50ef56fa1a Mon Sep 17 00:00:00 2001 From: Tom Hunze Date: Thu, 27 Nov 2025 19:48:11 +0100 Subject: [PATCH 1/2] python313Packages.succulent: 0.4.2 -> 0.4.3 https://github.com/firefly-cpp/succulent/releases/tag/0.4.3 --- pkgs/development/python-modules/succulent/default.nix | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/succulent/default.nix b/pkgs/development/python-modules/succulent/default.nix index 09fa33ea2d2b..02fbfd792c2d 100644 --- a/pkgs/development/python-modules/succulent/default.nix +++ b/pkgs/development/python-modules/succulent/default.nix @@ -9,25 +9,23 @@ pyyaml, poetry-core, pytestCheckHook, - pythonOlder, }: buildPythonPackage rec { pname = "succulent"; - version = "0.4.2"; + version = "0.4.3"; pyproject = true; - disabled = pythonOlder "3.8"; - src = fetchFromGitHub { owner = "firefly-cpp"; repo = "succulent"; tag = version; - hash = "sha256-3cqU1iYxvMyx0hCVl6r4RZARpsWNckXZgeBNq0kokuw="; + hash = "sha256-e2F2g8NfMyAfiHPUq8KRs99pu7yEZTpWraxhsAZXE4Q="; }; pythonRelaxDeps = [ "flask" + "lxml" "numpy" ]; @@ -50,7 +48,7 @@ buildPythonPackage rec { meta = with lib; { description = "Collect POST requests"; homepage = "https://github.com/firefly-cpp/succulent"; - changelog = "https://github.com/firefly-cpp/succulent/blob/${src.tag}/CHANGELOG.md"; + changelog = "https://github.com/firefly-cpp/succulent/releases/tag/${src.tag}"; license = licenses.mit; maintainers = with maintainers; [ firefly-cpp ]; }; From c200b14893d35465c8fce9bf29e47b238c3fdfee Mon Sep 17 00:00:00 2001 From: Tom Hunze Date: Thu, 27 Nov 2025 19:49:10 +0100 Subject: [PATCH 2/2] python313Packages.succulent: refactor --- pkgs/development/python-modules/succulent/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/succulent/default.nix b/pkgs/development/python-modules/succulent/default.nix index 02fbfd792c2d..b542f80e409c 100644 --- a/pkgs/development/python-modules/succulent/default.nix +++ b/pkgs/development/python-modules/succulent/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { "numpy" ]; - nativeBuildInputs = [ + build-system = [ poetry-core ]; - propagatedBuildInputs = [ + dependencies = [ flask lxml numpy @@ -45,11 +45,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "succulent" ]; - meta = with lib; { + meta = { description = "Collect POST requests"; homepage = "https://github.com/firefly-cpp/succulent"; changelog = "https://github.com/firefly-cpp/succulent/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ firefly-cpp ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ firefly-cpp ]; }; }