about summary refs log tree commit diff
path: root/pkgs/development/interpreters/python/docs/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/interpreters/python/docs/default.nix')
-rw-r--r--pkgs/development/interpreters/python/docs/default.nix50
1 files changed, 25 insertions, 25 deletions
diff --git a/pkgs/development/interpreters/python/docs/default.nix b/pkgs/development/interpreters/python/docs/default.nix
index 9ec67173be3f..7e3ff6abbe93 100644
--- a/pkgs/development/interpreters/python/docs/default.nix
+++ b/pkgs/development/interpreters/python/docs/default.nix
@@ -1,85 +1,85 @@
-{ stdenv, fetchurl }:
+{ stdenv, fetchurl, lib }:
 
 let
 pythonDocs = {
   html = {
     python33 = import ./3.3-html.nix {
-      inherit stdenv fetchurl;
+      inherit stdenv fetchurl lib;
     };
     python32 = import ./3.2-html.nix {
-      inherit stdenv fetchurl;
+      inherit stdenv fetchurl lib;
     };
     python31 = import ./3.1-html.nix {
-      inherit stdenv fetchurl;
+      inherit stdenv fetchurl lib;
     };
     python30 = import ./3.0-html.nix {
-      inherit stdenv fetchurl;
+      inherit stdenv fetchurl lib;
     };
     python27 = import ./2.7-html.nix {
-      inherit stdenv fetchurl;
+      inherit stdenv fetchurl lib;
     };
     python26 = import ./2.6-html.nix {
-      inherit stdenv fetchurl;
+      inherit stdenv fetchurl lib;
     };
   };
   pdf_a4 = {
     python33 = import ./3.3-pdf-a4.nix {
-      inherit stdenv fetchurl;
+      inherit stdenv fetchurl lib;
     };
     python32 = import ./3.2-pdf-a4.nix {
-      inherit stdenv fetchurl;
+      inherit stdenv fetchurl lib;
     };
     python31 = import ./3.1-pdf-a4.nix {
-      inherit stdenv fetchurl;
+      inherit stdenv fetchurl lib;
     };
     python30 = import ./3.0-pdf-a4.nix {
-      inherit stdenv fetchurl;
+      inherit stdenv fetchurl lib;
     };
     python27 = import ./2.7-pdf-a4.nix {
-      inherit stdenv fetchurl;
+      inherit stdenv fetchurl lib;
     };
     python26 = import ./2.6-pdf-a4.nix {
-      inherit stdenv fetchurl;
+      inherit stdenv fetchurl lib;
     };
   };
   pdf_letter = {
     python33 = import ./3.3-pdf-letter.nix {
-      inherit stdenv fetchurl;
+      inherit stdenv fetchurl lib;
     };
     python32 = import ./3.2-pdf-letter.nix {
-      inherit stdenv fetchurl;
+      inherit stdenv fetchurl lib;
     };
     python31 = import ./3.1-pdf-letter.nix {
-      inherit stdenv fetchurl;
+      inherit stdenv fetchurl lib;
     };
     python30 = import ./3.0-pdf-letter.nix {
-      inherit stdenv fetchurl;
+      inherit stdenv fetchurl lib;
     };
     python27 = import ./2.7-pdf-letter.nix {
-      inherit stdenv fetchurl;
+      inherit stdenv fetchurl lib;
     };
     python26 = import ./2.6-pdf-letter.nix {
-      inherit stdenv fetchurl;
+      inherit stdenv fetchurl lib;
     };
   };
   text = {
     python33 = import ./3.3-text.nix {
-      inherit stdenv fetchurl;
+      inherit stdenv fetchurl lib;
     };
     python32 = import ./3.2-text.nix {
-      inherit stdenv fetchurl;
+      inherit stdenv fetchurl lib;
     };
     python31 = import ./3.1-text.nix {
-      inherit stdenv fetchurl;
+      inherit stdenv fetchurl lib;
     };
     python30 = import ./3.0-text.nix {
-      inherit stdenv fetchurl;
+      inherit stdenv fetchurl lib;
     };
     python27 = import ./2.7-text.nix {
-      inherit stdenv fetchurl;
+      inherit stdenv fetchurl lib;
     };
     python26 = import ./2.6-text.nix {
-      inherit stdenv fetchurl;
+      inherit stdenv fetchurl lib;
     };
   };
 }; in pythonDocs