1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/interpreters/python/cpython/docs/3.7-text.nix

19 lines
482 B
Nix
Raw Normal View History

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