mirror of
https://github.com/nix-community/home-manager
synced 2024-11-08 20:29:43 +01:00
28 lines
716 B
Nix
28 lines
716 B
Nix
|
{ buildPythonApplication, lib, python, nixos-render-docs }:
|
||
|
buildPythonApplication {
|
||
|
pname = "home-manager-render-docs";
|
||
|
version = "0.0";
|
||
|
format = "pyproject";
|
||
|
|
||
|
src = lib.cleanSourceWith {
|
||
|
filter = name: type:
|
||
|
lib.cleanSourceFilter name type && !(type == "directory"
|
||
|
&& builtins.elem (baseNameOf name) [
|
||
|
".pytest_cache"
|
||
|
".mypy_cache"
|
||
|
"__pycache__"
|
||
|
]);
|
||
|
src = ./home-manager-render-docs;
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = with python.pkgs; [ setuptools ];
|
||
|
|
||
|
propagatedBuildInputs = [ nixos-render-docs ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Renderer for home-manager manual and option docs";
|
||
|
license = licenses.mit;
|
||
|
maintainers = [ ];
|
||
|
};
|
||
|
}
|