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

19 lines
485 B
Nix
Raw Normal View History

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