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";
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 = {
email = "charlesbaynham@gmail.com";
github = "charlesbaynham";

View File

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