at 23.11-beta 1.1 kB view raw
1{ stdenv, fetchurl, lib }: 2 3let 4pythonDocs = { 5 html = { 6 recurseForDerivations = true; 7 python27 = import ./2.7-html.nix { 8 inherit stdenv fetchurl lib; 9 }; 10 python310 = import ./3.10-html.nix { 11 inherit stdenv fetchurl lib; 12 }; 13 }; 14 pdf_a4 = { 15 recurseForDerivations = true; 16 python27 = import ./2.7-pdf-a4.nix { 17 inherit stdenv fetchurl lib; 18 }; 19 python310 = import ./3.10-pdf-a4.nix { 20 inherit stdenv fetchurl lib; 21 }; 22 }; 23 pdf_letter = { 24 recurseForDerivations = true; 25 python27 = import ./2.7-pdf-letter.nix { 26 inherit stdenv fetchurl lib; 27 }; 28 python310 = import ./3.10-pdf-letter.nix { 29 inherit stdenv fetchurl lib; 30 }; 31 }; 32 text = { 33 recurseForDerivations = true; 34 python27 = import ./2.7-text.nix { 35 inherit stdenv fetchurl lib; 36 }; 37 python310 = import ./3.10-text.nix { 38 inherit stdenv fetchurl lib; 39 }; 40 }; 41 texinfo = { 42 recurseForDerivations = true; 43 python310 = import ./3.10-texinfo.nix { 44 inherit stdenv fetchurl lib; 45 }; 46 }; 47}; in pythonDocs