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