Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28996,6 +28996,12 @@
githubId = 5356506;
name = "Tricia Tan";
};
tristanqtn = {
email = "tristan.querton@gmail.com";
github = "tristanqtn";
githubId = 77152870;
name = "Tristan Querton";
};
trobert = {
email = "thibaut.robert@gmail.com";
github = "trobert";
Expand Down
12 changes: 6 additions & 6 deletions pkgs/by-name/ex/exegol/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,23 @@
}:
python3Packages.buildPythonApplication (finalAttrs: {
pname = "exegol";
version = "5.1.10";
version = "5.1.11";
pyproject = true;
__structuredAttrs = true;

src = fetchFromGitHub {
owner = "ThePorgs";
repo = "Exegol";
tag = finalAttrs.version;
hash = "sha256-iyzTBZHOzr6CfZDqHvycdWZply/BXH7kESaO5pDLBMY=";
hash = "sha256-FI6lBJkJqmDexfxOWOa4tFe06tOFmUezy7OoDqXQN24=";
};

build-system = with python3Packages; [ pdm-backend ];

pythonRelaxDeps = [
"argcomplete"
"cryptography"
"docker"
"pydantic"
"requests"
"rich"
Expand All @@ -42,12 +43,10 @@ python3Packages.buildPythonApplication (finalAttrs: {
requests
rich
supabase
tzlocal
]
++ pyjwt.optional-dependencies.crypto
++ [ xhost ]
++ lib.optionals (!stdenv.hostPlatform.isLinux) [
tzlocal
];
++ [ xhost ];

doCheck = true;

Expand Down Expand Up @@ -80,6 +79,7 @@ python3Packages.buildPythonApplication (finalAttrs: {
_0b11stan
charB66
macbucheron
tristanqtn
];
};
})
Loading