1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-22 14:45:27 +00:00
nixpkgs/pkgs/development/interpreters/python/cpython/docs/default.nix

42 lines
936 B
Nix
Raw Normal View History

{ stdenv, fetchurl, lib }:
2013-03-02 04:40:20 +00:00
let
pythonDocs = {
html = {
recurseForDerivations = true;
python27 = import ./2.7-html.nix {
inherit stdenv fetchurl lib;
};
2019-03-07 06:49:25 +00:00
python37 = import ./3.7-html.nix {
inherit stdenv fetchurl lib;
};
};
pdf_a4 = {
recurseForDerivations = true;
python27 = import ./2.7-pdf-a4.nix {
inherit stdenv fetchurl lib;
};
2019-03-07 06:49:25 +00:00
python37 = import ./3.7-pdf-a4.nix {
inherit stdenv fetchurl lib;
};
};
pdf_letter = {
recurseForDerivations = true;
python27 = import ./2.7-pdf-letter.nix {
inherit stdenv fetchurl lib;
};
2019-03-07 06:49:25 +00:00
python37 = import ./3.7-pdf-letter.nix {
inherit stdenv fetchurl lib;
};
};
text = {
recurseForDerivations = true;
python27 = import ./2.7-text.nix {
inherit stdenv fetchurl lib;
};
2019-03-07 06:49:25 +00:00
python37 = import ./3.7-text.nix {
inherit stdenv fetchurl lib;
};
2013-03-02 04:40:20 +00:00
};
}; in pythonDocs