mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-25 06:13:54 +00:00
21 lines
519 B
Nix
21 lines
519 B
Nix
# This file was generated and will be overwritten by ./generate.sh
|
|
|
|
{ stdenv, fetchurl, lib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "python37-docs-pdf-a4";
|
|
version = "3.7.2";
|
|
|
|
src = fetchurl {
|
|
url = "http://docs.python.org/ftp/python/doc/${version}/python-${version}-docs-pdf-a4.tar.bz2";
|
|
sha256 = "0vdx762m30hjaabn6w88awcj2qpbz0b6z59zn9wmamd35k59lfba";
|
|
};
|
|
installPhase = ''
|
|
mkdir -p $out/share/doc/python37
|
|
cp -R ./ $out/share/doc/python37/pdf-a4
|
|
'';
|
|
meta = {
|
|
maintainers = [ ];
|
|
};
|
|
}
|