summaryrefslogtreecommitdiffstats
path: root/pkgs/development/python2-modules
diff options
context:
space:
mode:
authorRobert Schütz <nix@dotlambda.de>2022-12-09 12:17:25 -0800
committerRobert Schütz <nix@dotlambda.de>2022-12-09 12:17:25 -0800
commitc760e716267ebb9a97429174e84594257796c561 (patch)
tree074db93b0e55b9ea0453cf25b8f8b31b8a0e2635 /pkgs/development/python2-modules
parent4bd693080add1007bd55249deb34646a13f08819 (diff)
python2Packages.pygobject3: remove
Diffstat (limited to 'pkgs/development/python2-modules')
-rw-r--r--pkgs/development/python2-modules/pygobject/default.nix33
1 files changed, 0 insertions, 33 deletions
diff --git a/pkgs/development/python2-modules/pygobject/default.nix b/pkgs/development/python2-modules/pygobject/default.nix
deleted file mode 100644
index ce9410eaf8b5..000000000000
--- a/pkgs/development/python2-modules/pygobject/default.nix
+++ /dev/null
@@ -1,33 +0,0 @@
-{ lib, stdenv, fetchurl, buildPythonPackage, pkg-config, glib, gobject-introspection,
-pycairo, cairo, which, ncurses, meson, ninja, isPy3k, gnome }:
-
-buildPythonPackage rec {
- pname = "pygobject";
- version = "3.36.1";
-
- format = "other";
-
- src = fetchurl {
- url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
- sha256 = "0b9CgC0c7BE7Wtqg579/N0W0RSHcIWNYjSdtXNYdcY8=";
- };
-
- outputs = [ "out" "dev" ];
-
- mesonFlags = [
- "-Dpython=python${if isPy3k then "3" else "2" }"
- ];
-
- nativeBuildInputs = [ pkg-config meson ninja gobject-introspection ];
- buildInputs = [ glib gobject-introspection ]
- ++ lib.optionals stdenv.isDarwin [ which ncurses ];
- propagatedBuildInputs = [ pycairo cairo ];
-
- meta = with lib; {
- homepage = "https://pygobject.readthedocs.io/";
- description = "Python bindings for Glib";
- license = licenses.gpl2;
- maintainers = with maintainers; [ orivej ];
- platforms = platforms.unix;
- };
-}