Files
nixpkgs/nixos/tests/modular-service-etc/python-http-server.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

54 lines
1.2 KiB
Nix

# Tests in: ./test.nix
# This module provides a basic web server based on the python built-in http.server package.
{
config,
lib,
...
}:
let
inherit (lib) mkOption types;
in
{
_class = "service";
options = {
python-http-server = {
package = mkOption {
type = types.package;
description = "Python package to use for the web server";
};
port = mkOption {
type = types.port;
default = 8000;
description = "Port to listen on";
};
directory = mkOption {
type = types.str;
default = config.configData."webroot".path;
defaultText = lib.literalExpression ''config.configData."webroot".path'';
description = "Directory to serve files from";
};
};
};
config = {
process.argv = [
"${lib.getExe config.python-http-server.package}"
"-m"
"http.server"
"${toString config.python-http-server.port}"
"--directory"
config.python-http-server.directory
];
configData = {
"webroot" = {
# Enable only if directory is set to use this path
enable = lib.mkDefault (config.python-http-server.directory == config.configData."webroot".path);
};
};
};
}