Exegol update 4.3.1 to 4.3.8 (#345103)

This commit is contained in:
lassulus 2024-11-27 21:36:52 +01:00 committed by GitHub
commit cd16e39a1e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 25 additions and 12 deletions

View File

@ -3818,6 +3818,12 @@
name = "ChaosAttractor"; name = "ChaosAttractor";
keys = [ { fingerprint = "A137 4415 DB7C 6439 10EA 5BF1 0FEE 4E47 5940 E125"; } ]; keys = [ { fingerprint = "A137 4415 DB7C 6439 10EA 5BF1 0FEE 4E47 5940 E125"; } ];
}; };
charB66 = {
email = "nix.disparate221@passinbox.com";
github = "charB66";
githubId = 59340663;
name = "Bryan F.";
};
charlesbaynham = { charlesbaynham = {
email = "charlesbaynham@gmail.com"; email = "charlesbaynham@gmail.com";
github = "charlesbaynham"; github = "charlesbaynham";

View File

@ -2,27 +2,31 @@
fetchPypi, fetchPypi,
lib, lib,
python3, python3,
xorg,
}: }:
python3.pkgs.buildPythonApplication rec { python3.pkgs.buildPythonApplication rec {
pname = "Exegol"; pname = "exegol";
version = "4.3.1"; version = "4.3.8";
format = "setuptools"; format = "setuptools";
# Project has no unit tests # Project has no unit tests
doCheck = false; doCheck = false;
propagatedBuildInputs = with python3.pkgs; [ propagatedBuildInputs =
pyyaml with python3.pkgs;
gitpython [
docker pyyaml
requests gitpython
rich docker
argcomplete requests
]; rich
argcomplete
]
++ [ xorg.xhost ];
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
hash = "sha256-cMbMmkG52A104iHVwe+6k1Fazi7fISeU/doWJqw5Whw="; hash = "sha256-x2kIQOwbokJ0/uOafWZp0X67FmuEjF0WvI4D4jCLWnk=";
}; };
meta = with lib; { meta = with lib; {
@ -39,6 +43,9 @@ python3.pkgs.buildPythonApplication rec {
changelog = "https://github.com/ThePorgs/Exegol/releases/tag/${version}"; changelog = "https://github.com/ThePorgs/Exegol/releases/tag/${version}";
license = licenses.gpl3Only; license = licenses.gpl3Only;
mainProgram = "exegol"; mainProgram = "exegol";
maintainers = with maintainers; [ _0b11stan ]; maintainers = with maintainers; [
_0b11stan
charB66
];
}; };
} }