From 0099df97875e3c8bc9715b1b9bc1d98e7bae507e Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 9 Feb 2023 12:03:49 +0100 Subject: [PATCH 1/3] python310Packages.msgspec: 0.12.0 -> 0.13.0 Diff: https://github.com/jcrist/msgspec/compare/refs/tags/0.12.0...0.13.0 Changelog: https://github.com/jcrist/msgspec/releases/tag/0.13.0 --- pkgs/development/python-modules/msgspec/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/msgspec/default.nix b/pkgs/development/python-modules/msgspec/default.nix index fdeddeae0601..6844ba5e0d1d 100644 --- a/pkgs/development/python-modules/msgspec/default.nix +++ b/pkgs/development/python-modules/msgspec/default.nix @@ -8,7 +8,7 @@ buildPythonPackage rec { pname = "msgspec"; - version = "0.12.0"; + version = "0.13.0"; format = "setuptools"; disabled = pythonOlder "3.8"; @@ -17,7 +17,7 @@ buildPythonPackage rec { owner = "jcrist"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-9k1lpx5pb9idMwgYAZjVEM915w5wsmLWQ/tnHNSKHAs="; + hash = "sha256-R3/ljUBm0WTRIdp5qoHtH3k1ReaMzASsD4tB8bHKAMc="; }; # Requires libasan to be accessible From 474be6bb29a7e039bd8aef34339f30322db13824 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 9 Feb 2023 12:53:46 +0100 Subject: [PATCH 2/3] gallia: add changelog to meta --- pkgs/tools/security/gallia/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/tools/security/gallia/default.nix b/pkgs/tools/security/gallia/default.nix index f86d807d4309..6c83a01ef0bb 100644 --- a/pkgs/tools/security/gallia/default.nix +++ b/pkgs/tools/security/gallia/default.nix @@ -54,6 +54,7 @@ python3.pkgs.buildPythonApplication rec { meta = with lib; { description = "Extendable Pentesting Framework for the Automotive Domain"; homepage = "https://github.com/Fraunhofer-AISEC/gallia"; + changelog = "https://github.com/Fraunhofer-AISEC/gallia/releases/tag/v${version}"; license = with licenses; [ asl20 ]; maintainers = with maintainers; [ fab rumpelsepp ]; platforms = platforms.linux; From bdf3a9e1cfe65c1f35bd50e32f42a592e3028b9d Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 9 Feb 2023 12:55:51 +0100 Subject: [PATCH 3/3] gallia: relax msgspec constraint --- pkgs/tools/security/gallia/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/tools/security/gallia/default.nix b/pkgs/tools/security/gallia/default.nix index 6c83a01ef0bb..438c22f0046c 100644 --- a/pkgs/tools/security/gallia/default.nix +++ b/pkgs/tools/security/gallia/default.nix @@ -17,8 +17,13 @@ python3.pkgs.buildPythonApplication rec { hash = "sha256-McHzHK404kDB992T2f84dZHDxujpPIz4qglYMmv3kTw="; }; + pythonRelaxDeps = [ + "msgspec" + ]; + nativeBuildInputs = with python3.pkgs; [ poetry-core + pythonRelaxDepsHook ]; propagatedBuildInputs = with python3.pkgs; [