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