mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-01 22:38:19 +00:00
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.
30 lines
516 B
Nix
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
|