exegol: 4.3.9 -> 4.3.10 (#389092)

authored by Pol Dellaiera and committed by GitHub 153ac89f 877ebad7

+22 -14
+22 -14
pkgs/by-name/ex/exegol/package.nix
··· 1 { 2 fetchPypi, 3 lib, 4 - python3, 5 xorg, 6 }: 7 - python3.pkgs.buildPythonApplication rec { 8 pname = "exegol"; 9 - version = "4.3.9"; 10 - format = "setuptools"; 11 12 - # Project has no unit tests 13 - doCheck = false; 14 15 - propagatedBuildInputs = 16 - with python3.pkgs; 17 [ 18 pyyaml 19 gitpython ··· 21 requests 22 rich 23 argcomplete 24 ] 25 ++ [ xorg.xhost ]; 26 27 - src = fetchPypi { 28 - inherit pname version; 29 - hash = "sha256-CoPQMEk8eagYU/TfaPAM6ItfSCZbrvzUww8H9ND8VUk="; 30 - }; 31 32 meta = with lib; { 33 description = "Fully featured and community-driven hacking environment"; ··· 41 ''; 42 homepage = "https://github.com/ThePorgs/Exegol"; 43 changelog = "https://github.com/ThePorgs/Exegol/releases/tag/${version}"; 44 - license = licenses.gpl3Only; 45 mainProgram = "exegol"; 46 - maintainers = with maintainers; [ 47 _0b11stan 48 charB66 49 ];
··· 1 { 2 fetchPypi, 3 lib, 4 + python3Packages, 5 xorg, 6 }: 7 + python3Packages.buildPythonApplication rec { 8 pname = "exegol"; 9 + version = "4.3.10"; 10 + pyproject = true; 11 12 + src = fetchPypi { 13 + inherit pname version; 14 + hash = "sha256-BtOW7EBbFil7yyhL6uayTUUkDldI8+xxolfQZtX+00c="; 15 + }; 16 + 17 + build-system = with python3Packages; [ pdm-backend ]; 18 19 + pythonRelaxDeps = [ 20 + "rich" 21 + ]; 22 + 23 + dependencies = 24 + with python3Packages; 25 [ 26 pyyaml 27 gitpython ··· 29 requests 30 rich 31 argcomplete 32 + tzlocal 33 ] 34 ++ [ xorg.xhost ]; 35 36 + doCheck = true; 37 + 38 + pythonImportsCheck = [ "exegol" ]; 39 40 meta = with lib; { 41 description = "Fully featured and community-driven hacking environment"; ··· 49 ''; 50 homepage = "https://github.com/ThePorgs/Exegol"; 51 changelog = "https://github.com/ThePorgs/Exegol/releases/tag/${version}"; 52 + license = lib.licenses.gpl3Only; 53 mainProgram = "exegol"; 54 + maintainers = with lib.maintainers; [ 55 _0b11stan 56 charB66 57 ];