d387cac375
Python 3.3 reaches end-of-life when we release 17.09. https://mail.python.org/pipermail/python-dev/2017-July/148584.html
30 lines
604 B
Nix
30 lines
604 B
Nix
{ stdenv, fetchurl, lib }:
|
|
|
|
let
|
|
pythonDocs = {
|
|
html = {
|
|
recurseForDerivations = true;
|
|
python27 = import ./2.7-html.nix {
|
|
inherit stdenv fetchurl lib;
|
|
};
|
|
};
|
|
pdf_a4 = {
|
|
recurseForDerivations = true;
|
|
python27 = import ./2.7-pdf-a4.nix {
|
|
inherit stdenv fetchurl lib;
|
|
};
|
|
};
|
|
pdf_letter = {
|
|
recurseForDerivations = true;
|
|
python27 = import ./2.7-pdf-letter.nix {
|
|
inherit stdenv fetchurl lib;
|
|
};
|
|
};
|
|
text = {
|
|
recurseForDerivations = true;
|
|
python27 = import ./2.7-text.nix {
|
|
inherit stdenv fetchurl lib;
|
|
};
|
|
};
|
|
}; in pythonDocs
|