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 }; 11 pdf_a4 = { 12 recurseForDerivations = true; 13 python27 = import ./2.7-pdf-a4.nix { 14 inherit stdenv fetchurl lib; 15 }; 16 }; 17 pdf_letter = { 18 recurseForDerivations = true; 19 python27 = import ./2.7-pdf-letter.nix { 20 inherit stdenv fetchurl lib; 21 }; 22 }; 23 text = { 24 recurseForDerivations = true; 25 python27 = import ./2.7-text.nix { 26 inherit stdenv fetchurl lib; 27 }; 28 }; 29}; in pythonDocs