about summary refs log tree commit diff
path: root/pkgs/development/interpreters/python/docs/default.nix
blob: 16ade3af3f956fb3e70d84d6eae5ebd80540e5c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{ stdenv, fetchurl, lib }:

let
pythonDocs = {
  html = {
    recurseForDerivations = true;
    python33 = import ./3.3-html.nix {
      inherit stdenv fetchurl lib;
    };
    python32 = import ./3.2-html.nix {
      inherit stdenv fetchurl lib;
    };
    python31 = import ./3.1-html.nix {
      inherit stdenv fetchurl lib;
    };
    python30 = import ./3.0-html.nix {
      inherit stdenv fetchurl lib;
    };
    python27 = import ./2.7-html.nix {
      inherit stdenv fetchurl lib;
    };
    python26 = import ./2.6-html.nix {
      inherit stdenv fetchurl lib;
    };
  };
  pdf_a4 = {
    recurseForDerivations = true;
    python33 = import ./3.3-pdf-a4.nix {
      inherit stdenv fetchurl lib;
    };
    python32 = import ./3.2-pdf-a4.nix {
      inherit stdenv fetchurl lib;
    };
    python31 = import ./3.1-pdf-a4.nix {
      inherit stdenv fetchurl lib;
    };
    python30 = import ./3.0-pdf-a4.nix {
      inherit stdenv fetchurl lib;
    };
    python27 = import ./2.7-pdf-a4.nix {
      inherit stdenv fetchurl lib;
    };
    python26 = import ./2.6-pdf-a4.nix {
      inherit stdenv fetchurl lib;
    };
  };
  pdf_letter = {
    recurseForDerivations = true;
    python33 = import ./3.3-pdf-letter.nix {
      inherit stdenv fetchurl lib;
    };
    python32 = import ./3.2-pdf-letter.nix {
      inherit stdenv fetchurl lib;
    };
    python31 = import ./3.1-pdf-letter.nix {
      inherit stdenv fetchurl lib;
    };
    python30 = import ./3.0-pdf-letter.nix {
      inherit stdenv fetchurl lib;
    };
    python27 = import ./2.7-pdf-letter.nix {
      inherit stdenv fetchurl lib;
    };
    python26 = import ./2.6-pdf-letter.nix {
      inherit stdenv fetchurl lib;
    };
  };
  text = {
    recurseForDerivations = true;
    python33 = import ./3.3-text.nix {
      inherit stdenv fetchurl lib;
    };
    python32 = import ./3.2-text.nix {
      inherit stdenv fetchurl lib;
    };
    python31 = import ./3.1-text.nix {
      inherit stdenv fetchurl lib;
    };
    python30 = import ./3.0-text.nix {
      inherit stdenv fetchurl lib;
    };
    python27 = import ./2.7-text.nix {
      inherit stdenv fetchurl lib;
    };
    python26 = import ./2.6-text.nix {
      inherit stdenv fetchurl lib;
    };
  };
}; in pythonDocs