Remove top-level pygame

See #11567.

+7 -13
+6 -6
pkgs/applications/office/impressive/default.nix
··· 1 - { fetchurl, stdenv, python, makeWrapper, lib 2 - , xpdf, pillow, pyopengl, pygame 3 - , setuptools, mesa, freeglut }: 4 5 - let version = "0.10.5"; 6 - in 7 - stdenv.mkDerivation { 8 # This project was formerly known as KeyJNote. 9 # See http://keyj.s2000.ws/?p=77 for details. 10
··· 1 + { fetchurl, stdenv, pythonPackages, makeWrapper, lib 2 + , xpdf, mesa, freeglut }: 3 4 + let 5 + inherit (pythonPackages) python pyopengl pygame setuptools pillow; 6 + version = "0.10.5"; 7 + in stdenv.mkDerivation { 8 # This project was formerly known as KeyJNote. 9 # See http://keyj.s2000.ws/?p=77 for details. 10
+1 -7
pkgs/top-level/all-packages.nix
··· 10065 10066 pyexiv2 = pythonPackages.pyexiv2; 10067 10068 - pygame = pythonPackages.pygame; 10069 - 10070 pygobject = pythonPackages.pygobject; 10071 10072 pygobject3 = pythonPackages.pygobject3; ··· 13556 imagemagickBig = callPackage ../applications/graphics/ImageMagick { }; 13557 13558 # Impressive, formerly known as "KeyJNote". 13559 - impressive = callPackage ../applications/office/impressive { 13560 - # XXX These are the PyOpenGL dependencies, which we need here. 13561 - inherit (pythonPackages) pyopengl; 13562 - inherit (pythonPackages) pillow; 13563 - }; 13564 13565 inferno = callPackage_i686 ../applications/inferno { }; 13566
··· 10065 10066 pyexiv2 = pythonPackages.pyexiv2; 10067 10068 pygobject = pythonPackages.pygobject; 10069 10070 pygobject3 = pythonPackages.pygobject3; ··· 13554 imagemagickBig = callPackage ../applications/graphics/ImageMagick { }; 13555 13556 # Impressive, formerly known as "KeyJNote". 13557 + impressive = callPackage ../applications/office/impressive { }; 13558 13559 inferno = callPackage_i686 ../applications/inferno { }; 13560