Files
nixpkgs/pkgs/development/interpreters/python/cpython/docs/default.nix
Nicolas Benes f510bda3df pythonDocs: switch to stable URL, drop pdf-a4
The previous URL did not contain the patch version and therefore there
were hash changes to the fetched files. Switch to a more stable URL.
The pdf-a4 file format seems to be generated only for the .0 patch
release, so it is missing for later releases.
2026-06-13 16:52:56 +02:00

30 lines
516 B
Nix

{
stdenv,
fetchurl,
lib,
}:
let
pythonDocs = {
html = {
recurseForDerivations = true;
python314 = import ./3.14-html.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