nixpkgs/pkgs/development/interpreters/python/cpython/docs/2.7-html.nix

19 lines
485 B
Nix
Raw Normal View History

2013-03-01 20:40:20 -08:00
# This file was generated and will be overwritten by ./generate.sh
{ stdenv, fetchurl, lib }:
2013-03-01 20:40:20 -08:00
2019-08-13 14:52:01 -07:00
stdenv.mkDerivation {
2019-03-06 22:49:25 -08:00
name = "python27-docs-html-2.7.16";
2013-03-01 20:40:20 -08:00
src = fetchurl {
url = "http://docs.python.org/ftp/python/doc/2.7.16/python-2.7.16-docs-html.tar.bz2";
2019-03-06 22:49:25 -08:00
sha256 = "1razs1grzhai65ihaiyph8kz6ncjkgp1gsn3c8v7kanf13lqim02";
2013-03-01 20:40:20 -08:00
};
installPhase = ''
mkdir -p $out/share/doc/python27
cp -R ./ $out/share/doc/python27/html
2013-03-01 20:40:20 -08:00
'';
meta = {
maintainers = [ ];
};
2013-03-01 20:40:20 -08:00
}