aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pygobject/3.36.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pygobject/3.36.nix')
-rw-r--r--pkgs/development/python-modules/pygobject/3.36.nix40
1 files changed, 40 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pygobject/3.36.nix b/pkgs/development/python-modules/pygobject/3.36.nix
new file mode 100644
index 000000000000..7e31e788f31e
--- /dev/null
+++ b/pkgs/development/python-modules/pygobject/3.36.nix
@@ -0,0 +1,40 @@
+{ stdenv, fetchurl, buildPythonPackage, pkgconfig, glib, gobject-introspection,
+pycairo, cairo, which, ncurses, meson, ninja, isPy3k, gnome3 }:
+
+buildPythonPackage rec {
+ pname = "pygobject";
+ version = "3.36.1";
+
+ format = "other";
+
+ src = fetchurl {
+ url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
+ sha256 = "0b9CgC0c7BE7Wtqg579/N0W0RSHcIWNYjSdtXNYdcY8=";
+ };
+
+ outputs = [ "out" "dev" ];
+
+ mesonFlags = [
+ "-Dpython=python${if isPy3k then "3" else "2" }"
+ ];
+
+ nativeBuildInputs = [ pkgconfig meson ninja gobject-introspection ];
+ buildInputs = [ glib gobject-introspection ]
+ ++ stdenv.lib.optionals stdenv.isDarwin [ which ncurses ];
+ propagatedBuildInputs = [ pycairo cairo ];
+
+ passthru = {
+ updateScript = gnome3.updateScript {
+ packageName = pname;
+ attrPath = "python3.pkgs.${pname}3";
+ };
+ };
+
+ meta = with stdenv.lib; {
+ homepage = "https://pygobject.readthedocs.io/";
+ description = "Python bindings for Glib";
+ license = licenses.gpl2;
+ maintainers = with maintainers; [ orivej ];
+ platforms = platforms.unix;
+ };
+}