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

{ stdenv, fetchurl, lib }:

stdenv.mkDerivation rec {
  name = "python32-docs-text-3.2.3";
  src = fetchurl {
    url = http://docs.python.org/ftp/python/doc/3.2.3/python-3.2.3-docs-text.tar.bz2;
    sha256 = "1jdc9rj2b4vsbvg5mq6vcdfa2b72avhhvjw7rn7k3kl521cvxs09";
  };
  installPhase = ''
    mkdir -p $out/share/doc/python32
    cp -R ./ $out/share/doc/python32/text
  '';
  meta = {
    maintainers = [ lib.maintainers.chaoflow ];
  };
}