From c1936ac744ff916ce4f27079cd23a1d7ca0e6f57 Mon Sep 17 00:00:00 2001 From: 0xthefr34k Date: Tue, 11 Mar 2025 21:09:27 +0000 Subject: [PATCH] 4.3.9 -> 4.3.10 --- pkgs/by-name/ex/exegol/package.nix | 38 ++++++++++-------------------- 1 file changed, 12 insertions(+), 26 deletions(-) diff --git a/pkgs/by-name/ex/exegol/package.nix b/pkgs/by-name/ex/exegol/package.nix index 5a1b997d84ea..1103f124edbe 100644 --- a/pkgs/by-name/ex/exegol/package.nix +++ b/pkgs/by-name/ex/exegol/package.nix @@ -1,32 +1,20 @@ -{ - fetchPypi, - lib, - python3, - xorg, -}: +{ fetchPypi, lib, python3, xorg, }: python3.pkgs.buildPythonApplication rec { pname = "exegol"; - version = "4.3.9"; - format = "setuptools"; + version = "4.3.10"; + format = "pyproject"; - # Project has no unit tests - doCheck = false; + doCheck = true; + pythonRelaxDeps = true; - propagatedBuildInputs = - with python3.pkgs; - [ - pyyaml - gitpython - docker - requests - rich - argcomplete - ] - ++ [ xorg.xhost ]; + nativeBuildInputs = with python3.pkgs; [ pdm-backend ]; + + propagatedBuildInputs = with python3.pkgs; + [ pyyaml gitpython docker requests rich argcomplete ] ++ [ xorg.xhost ]; src = fetchPypi { inherit pname version; - hash = "sha256-CoPQMEk8eagYU/TfaPAM6ItfSCZbrvzUww8H9ND8VUk="; + hash = "sha256-BtOW7EBbFil7yyhL6uayTUUkDldI8+xxolfQZtX+00c="; }; meta = with lib; { @@ -43,9 +31,7 @@ python3.pkgs.buildPythonApplication rec { changelog = "https://github.com/ThePorgs/Exegol/releases/tag/${version}"; license = licenses.gpl3Only; mainProgram = "exegol"; - maintainers = with maintainers; [ - _0b11stan - charB66 - ]; + maintainers = with maintainers; [ _0b11stan charB66 ]; }; } +