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