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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
501 B
Nix
Raw Normal View History

2013-03-02 04:40:20 +00:00
# This file was generated and will be overwritten by ./generate.sh
{ stdenv, fetchurl, lib }:
2013-03-02 04:40:20 +00:00
stdenv.mkDerivation {
pname = "python27-docs-text";
version = "2.7.18";
2013-03-02 04:40:20 +00:00
src = fetchurl {
2022-09-24 07:21:54 +00:00
url = "http://www.python.org/ftp/python/doc/2.7.18/python-2.7.18-docs-text.tar.bz2";
sha256 = "1wj7mxs52kp5lmn5mvv574sygkfnk00kbz9ya9c03yfq5dd5nvy8";
2013-03-02 04:40:20 +00:00
};
installPhase = ''
mkdir -p $out/share/doc/python27
cp -R ./ $out/share/doc/python27/text
2013-03-02 04:40:20 +00:00
'';
meta = {
maintainers = [ ];
};
2013-03-02 04:40:20 +00:00
}