Exegol update 4.3.1 to 4.3.8 (#345103)
This commit is contained in:
commit
cd16e39a1e
@ -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";
|
||||
|
@ -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; [
|
||||
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
|
||||
];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user