about summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2019-01-22 11:24:35 +0100
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2019-01-22 11:26:07 +0100
commit7298764b9fa833c0d5c4ed0a8819582e55aa6e88 (patch)
tree5bdea180991e3d3f8ecf4f5dbde1d578e9be9270 /pkgs/development/python-modules
parenta6a0ba8354460af4f083c3d526c1bbfec3138632 (diff)
downloadnixlib-7298764b9fa833c0d5c4ed0a8819582e55aa6e88.tar
nixlib-7298764b9fa833c0d5c4ed0a8819582e55aa6e88.tar.gz
nixlib-7298764b9fa833c0d5c4ed0a8819582e55aa6e88.tar.bz2
nixlib-7298764b9fa833c0d5c4ed0a8819582e55aa6e88.tar.lz
nixlib-7298764b9fa833c0d5c4ed0a8819582e55aa6e88.tar.xz
nixlib-7298764b9fa833c0d5c4ed0a8819582e55aa6e88.tar.zst
nixlib-7298764b9fa833c0d5c4ed0a8819582e55aa6e88.zip
python.pkgs.pygame-git: remove
It is broken and no longer used.
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/pygame/git.nix47
1 files changed, 0 insertions, 47 deletions
diff --git a/pkgs/development/python-modules/pygame/git.nix b/pkgs/development/python-modules/pygame/git.nix
deleted file mode 100644
index 1d8ba697f38b..000000000000
--- a/pkgs/development/python-modules/pygame/git.nix
+++ /dev/null
@@ -1,47 +0,0 @@
-{ stdenv, lib, fetchFromBitbucket, buildPythonPackage, python, smpeg, libX11
-, SDL, SDL_image, SDL_mixer, SDL_ttf, libpng, libjpeg, portmidi
-}:
-
-buildPythonPackage rec {
-  pname = "pygame";
-  version = "2016-05-17";
-  name = pname + "-" + version;
-
-  src = fetchFromBitbucket {
-    owner = "pygame";
-    repo = "pygame";
-    rev = "575c7a74d85a37db7c645421c02cf0b6b78a889f";
-    sha256 = "1i5xqmw93kfidcji2wacgkm5y4mcnbksy8iimih0729k19rbhznc";
-  };
-
-  buildInputs = [
-    SDL SDL_image SDL_mixer SDL_ttf libpng libjpeg
-    smpeg portmidi libX11
-  ];
-
-  # Tests fail because of no audio device and display.
-  doCheck = false;
-
-  preConfigure = ''
-    sed \
-      -e "s/^origincdirs = .*/origincdirs = []/" \
-      -e "s/^origlibdirs = .*/origlibdirs = []/" \
-      -i config_unix.py
-    ${lib.concatMapStrings (dep: ''
-      sed \
-        -e "/^origincdirs =/aorigincdirs += ['${lib.getDev dep}/include']" \
-        -e "/^origlibdirs =/aoriglibdirs += ['${lib.getLib dep}/lib']" \
-        -i config_unix.py
-      '') buildInputs
-    }
-    LOCALBASE=/ ${python.interpreter} config.py
-  '';
-
-  meta = with stdenv.lib; {
-    description = "Python library for games";
-    homepage = http://www.pygame.org/;
-    license = licenses.lgpl21Plus;
-    platforms = platforms.linux;
-    broken = true;
-  };
-}