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