1# This file was generated and will be overwritten by ./generate.sh
2
3{ stdenv, fetchurl, lib }:
4
5stdenv.mkDerivation rec {
6 name = "python30-docs-text-3.0.1";
7 src = fetchurl {
8 url = http://docs.python.org/ftp/python/doc/3.0.1/python-3.0.1-docs-text.tar.bz2;
9 sha256 = "12qlh9ywbnw50wk5siq7lmhr935dd16q3vjbii6gfv0g80b1byzx";
10 };
11 installPhase = ''
12 mkdir -p $out/share/doc/python30
13 cp -R ./ $out/share/doc/python30/text
14 '';
15 meta = {
16 maintainers = [ lib.maintainers.chaoflow ];
17 };
18}