summary refs log tree commit diff
path: root/pkgs/development/interpreters/python/docs/2.7-html.nix
blob: 7db8d04403c354b4b53cb7b385923a76ba448d1c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# This file was generated and will be overwritten by ./generate.sh

{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "python27-docs-html-2.7.3";
  src = fetchurl {
    url = http://docs.python.org/ftp/python/doc/2.7.3/python-2.7.3-docs-html.tar.bz2;
    sha256 = "1hg92n0mzl9w6j33b2h0bf2vy6fsxnpxfdc3qw760vcm0y00155j";
  };
  installPhase = ''
    mkdir -p $out/share/docs
    cp -R ./ $out/share/docs/${name}
  '';
}