diff --git a/pkgs/development/interpreters/python/cpython/docs/3.10-html.nix b/pkgs/development/interpreters/python/cpython/docs/3.10-html.nix deleted file mode 100644 index 00325c241d6e..000000000000 --- a/pkgs/development/interpreters/python/cpython/docs/3.10-html.nix +++ /dev/null @@ -1,24 +0,0 @@ -# This file was generated and will be overwritten by ./generate.sh - -{ - stdenv, - lib, - fetchurl, -}: - -stdenv.mkDerivation { - pname = "python310-docs-html"; - version = "3.10.7"; - - src = fetchurl { - url = "https://www.python.org/ftp/python/doc/3.10.7/python-3.10.7-docs-html.tar.bz2"; - sha256 = "0j86z1vmaghzj5i4frvzyfb9qwsmm09g4f4ssx5w27cm30b8k0v1"; - }; - installPhase = '' - mkdir -p $out/share/doc/python310 - cp -R ./ $out/share/doc/python310/html - ''; - meta = { - maintainers = [ ]; - }; -} diff --git a/pkgs/development/interpreters/python/cpython/docs/3.10-pdf-a4.nix b/pkgs/development/interpreters/python/cpython/docs/3.10-pdf-a4.nix deleted file mode 100644 index 1c325ec52d8b..000000000000 --- a/pkgs/development/interpreters/python/cpython/docs/3.10-pdf-a4.nix +++ /dev/null @@ -1,24 +0,0 @@ -# This file was generated and will be overwritten by ./generate.sh - -{ - stdenv, - lib, - fetchurl, -}: - -stdenv.mkDerivation { - pname = "python310-docs-pdf-a4"; - version = "3.10.7"; - - src = fetchurl { - url = "https://www.python.org/ftp/python/doc/3.10.7/python-3.10.7-docs-pdf-a4.tar.bz2"; - sha256 = "1gvi457dsj3ywwvxysp7idkk9ndngnby1dnfh1q8f5gv3kg4093r"; - }; - installPhase = '' - mkdir -p $out/share/doc/python310 - cp -R ./ $out/share/doc/python310/pdf-a4 - ''; - meta = { - maintainers = [ ]; - }; -} diff --git a/pkgs/development/interpreters/python/cpython/docs/3.10-pdf-letter.nix b/pkgs/development/interpreters/python/cpython/docs/3.10-pdf-letter.nix deleted file mode 100644 index f53f668d27b8..000000000000 --- a/pkgs/development/interpreters/python/cpython/docs/3.10-pdf-letter.nix +++ /dev/null @@ -1,24 +0,0 @@ -# This file was generated and will be overwritten by ./generate.sh - -{ - stdenv, - lib, - fetchurl, -}: - -stdenv.mkDerivation { - pname = "python310-docs-pdf-letter"; - version = "3.10.7"; - - src = fetchurl { - url = "https://www.python.org/ftp/python/doc/3.10.7/python-3.10.7-docs-pdf-letter.tar.bz2"; - sha256 = "0hzq5n6absqsh21jp6j5iaim9a1wq69d8lc2assldzb2zg4i75hr"; - }; - installPhase = '' - mkdir -p $out/share/doc/python310 - cp -R ./ $out/share/doc/python310/pdf-letter - ''; - meta = { - maintainers = [ ]; - }; -} diff --git a/pkgs/development/interpreters/python/cpython/docs/3.10-texinfo.nix b/pkgs/development/interpreters/python/cpython/docs/3.10-texinfo.nix deleted file mode 100644 index f4997cca57b8..000000000000 --- a/pkgs/development/interpreters/python/cpython/docs/3.10-texinfo.nix +++ /dev/null @@ -1,24 +0,0 @@ -# This file was generated and will be overwritten by ./generate.sh - -{ - stdenv, - lib, - fetchurl, -}: - -stdenv.mkDerivation { - pname = "python310-docs-texinfo"; - version = "3.10.7"; - - src = fetchurl { - url = "https://www.python.org/ftp/python/doc/3.10.7/python-3.10.7-docs-texinfo.tar.bz2"; - sha256 = "0p0fifi84ijz4ng6krw7c1x965jhgysprkijblmlnax7x9rmqrdf"; - }; - installPhase = '' - mkdir -p $out/share/info - cp ./python.info $out/share/info - ''; - meta = { - maintainers = [ ]; - }; -} diff --git a/pkgs/development/interpreters/python/cpython/docs/3.10-text.nix b/pkgs/development/interpreters/python/cpython/docs/3.10-text.nix deleted file mode 100644 index 15dcb55dc6e1..000000000000 --- a/pkgs/development/interpreters/python/cpython/docs/3.10-text.nix +++ /dev/null @@ -1,24 +0,0 @@ -# This file was generated and will be overwritten by ./generate.sh - -{ - stdenv, - lib, - fetchurl, -}: - -stdenv.mkDerivation { - pname = "python310-docs-text"; - version = "3.10.7"; - - src = fetchurl { - url = "https://www.python.org/ftp/python/doc/3.10.7/python-3.10.7-docs-text.tar.bz2"; - sha256 = "1zbmm2fvdjnl214y41yffyqw3ywfai5r5npc00n1wkfxsdp7gcc3"; - }; - installPhase = '' - mkdir -p $out/share/doc/python310 - cp -R ./ $out/share/doc/python310/text - ''; - meta = { - maintainers = [ ]; - }; -} diff --git a/pkgs/development/interpreters/python/cpython/docs/default.nix b/pkgs/development/interpreters/python/cpython/docs/default.nix index 341b30774b68..1cf9194ba45f 100644 --- a/pkgs/development/interpreters/python/cpython/docs/default.nix +++ b/pkgs/development/interpreters/python/cpython/docs/default.nix @@ -8,42 +8,24 @@ let pythonDocs = { html = { recurseForDerivations = true; - python310 = import ./3.10-html.nix { - inherit stdenv fetchurl lib; - }; python314 = import ./3.14-html.nix { inherit stdenv fetchurl lib; }; }; pdf_a4 = { recurseForDerivations = true; - python310 = import ./3.10-pdf-a4.nix { - inherit stdenv fetchurl lib; - }; python314 = import ./3.14-pdf-a4.nix { inherit stdenv fetchurl lib; }; }; - pdf_letter = { - recurseForDerivations = true; - python310 = import ./3.10-pdf-letter.nix { - inherit stdenv fetchurl lib; - }; - }; text = { recurseForDerivations = true; - python310 = import ./3.10-text.nix { - inherit stdenv fetchurl lib; - }; python314 = import ./3.14-text.nix { inherit stdenv fetchurl lib; }; }; texinfo = { recurseForDerivations = true; - python310 = import ./3.10-texinfo.nix { - inherit stdenv fetchurl lib; - }; python314 = import ./3.14-texinfo.nix { inherit stdenv fetchurl lib; };