2013-03-05 11:28:30 +00:00
|
|
|
{ stdenv, fetchurl, lib }:
|
2013-03-02 04:40:20 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
pythonDocs = {
|
2013-03-03 05:43:31 +00:00
|
|
|
html = {
|
2013-03-13 12:09:58 +00:00
|
|
|
recurseForDerivations = true;
|
2013-03-03 05:43:31 +00:00
|
|
|
python27 = import ./2.7-html.nix {
|
2013-03-05 11:28:30 +00:00
|
|
|
inherit stdenv fetchurl lib;
|
2013-03-03 05:43:31 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
pdf_a4 = {
|
2013-03-13 12:09:58 +00:00
|
|
|
recurseForDerivations = true;
|
2013-03-03 05:43:31 +00:00
|
|
|
python27 = import ./2.7-pdf-a4.nix {
|
2013-03-05 11:28:30 +00:00
|
|
|
inherit stdenv fetchurl lib;
|
2013-03-03 05:43:31 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
pdf_letter = {
|
2013-03-13 12:09:58 +00:00
|
|
|
recurseForDerivations = true;
|
2013-03-03 05:43:31 +00:00
|
|
|
python27 = import ./2.7-pdf-letter.nix {
|
2013-03-05 11:28:30 +00:00
|
|
|
inherit stdenv fetchurl lib;
|
2013-03-03 05:43:31 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
text = {
|
2013-03-13 12:09:58 +00:00
|
|
|
recurseForDerivations = true;
|
2013-03-03 05:43:31 +00:00
|
|
|
python27 = import ./2.7-text.nix {
|
2013-03-05 11:28:30 +00:00
|
|
|
inherit stdenv fetchurl lib;
|
2013-03-03 05:43:31 +00:00
|
|
|
};
|
2013-03-02 04:40:20 +00:00
|
|
|
};
|
|
|
|
}; in pythonDocs
|