mirror of
https://github.com/nix-community/dream2nix.git
synced 2024-12-23 14:31:55 +03:00
92d2d31a4c
and more configuration. Also fix favicon path
19 lines
315 B
Nix
19 lines
315 B
Nix
{
|
|
lib,
|
|
python3,
|
|
}: let
|
|
package = python3.pkgs.buildPythonPackage {
|
|
name = "dream2nix_docs";
|
|
format = "pyproject";
|
|
src = ./.;
|
|
nativeBuildInputs = [
|
|
python3.pkgs.setuptools
|
|
];
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
mkdocs
|
|
mkdocs-material
|
|
];
|
|
};
|
|
in
|
|
package
|