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