Files
nixpkgs/pkgs/development/interpreters/python/cpython/docs/default.nix
2026-06-03 00:44:06 +02:00

36 lines
665 B
Nix

{
stdenv,
fetchurl,
lib,
}:
let
pythonDocs = {
html = {
recurseForDerivations = true;
python314 = import ./3.14-html.nix {
inherit stdenv fetchurl lib;
};
};
pdf_a4 = {
recurseForDerivations = true;
python314 = import ./3.14-pdf-a4.nix {
inherit stdenv fetchurl lib;
};
};
text = {
recurseForDerivations = true;
python314 = import ./3.14-text.nix {
inherit stdenv fetchurl lib;
};
};
texinfo = {
recurseForDerivations = true;
python314 = import ./3.14-texinfo.nix {
inherit stdenv fetchurl lib;
};
};
};
in
pythonDocs