From f713a8d7da20483e29ce698b2febf2bbb4b20981 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 10 Feb 2025 20:02:38 +0000 Subject: [PATCH 1/2] python312Packages.freertos-gdb: 1.0.3 -> 1.0.4 --- pkgs/development/python-modules/freertos-gdb/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/freertos-gdb/default.nix b/pkgs/development/python-modules/freertos-gdb/default.nix index 5b6bc91aaf54..63c47e7aeae3 100644 --- a/pkgs/development/python-modules/freertos-gdb/default.nix +++ b/pkgs/development/python-modules/freertos-gdb/default.nix @@ -6,11 +6,11 @@ buildPythonPackage rec { pname = "freertos-gdb"; - version = "1.0.3"; + version = "1.0.4"; src = fetchPypi { inherit pname version; - hash = "sha256-5rkB01OdbD5Z4vA6dbqhWp5pGwqI1IlE4IE1dSdT1QE="; + hash = "sha256-lH/dlTX2PuZ89rX5zzpedHkqHvdVy+h6BzJ8rVFmkb8="; }; # Project has no tests From dd7ee41e11113b3901620056f3c57c59c1545d29 Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Tue, 25 Feb 2025 16:01:46 +0100 Subject: [PATCH 2/2] python312Packages.freertos-gdb: refactor --- pkgs/development/python-modules/freertos-gdb/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/python-modules/freertos-gdb/default.nix b/pkgs/development/python-modules/freertos-gdb/default.nix index 63c47e7aeae3..38e1d1222e7f 100644 --- a/pkgs/development/python-modules/freertos-gdb/default.nix +++ b/pkgs/development/python-modules/freertos-gdb/default.nix @@ -2,17 +2,23 @@ lib, fetchPypi, buildPythonPackage, + setuptools, }: buildPythonPackage rec { pname = "freertos-gdb"; version = "1.0.4"; + pyproject = true; src = fetchPypi { inherit pname version; hash = "sha256-lH/dlTX2PuZ89rX5zzpedHkqHvdVy+h6BzJ8rVFmkb8="; }; + build-system = [ + setuptools + ]; + # Project has no tests doCheck = false;