summary refs log tree commit diff
path: root/pkgs/development/python-modules/pygobject
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2017-11-25 16:42:23 +0100
committerJan Tojnar <jtojnar@gmail.com>2017-11-27 19:48:19 +0100
commit8b8f17a68b2e8b84dbb94d1fa74117a199ea6423 (patch)
tree99e0f92ea98a9b7be98adb0aa6341f71937b72f0 /pkgs/development/python-modules/pygobject
parenta63603685a5aaa42c1c552baac158edb39cee23f (diff)
downloadnixpkgs-8b8f17a68b2e8b84dbb94d1fa74117a199ea6423.tar
nixpkgs-8b8f17a68b2e8b84dbb94d1fa74117a199ea6423.tar.gz
nixpkgs-8b8f17a68b2e8b84dbb94d1fa74117a199ea6423.tar.bz2
nixpkgs-8b8f17a68b2e8b84dbb94d1fa74117a199ea6423.tar.lz
nixpkgs-8b8f17a68b2e8b84dbb94d1fa74117a199ea6423.tar.xz
nixpkgs-8b8f17a68b2e8b84dbb94d1fa74117a199ea6423.tar.zst
nixpkgs-8b8f17a68b2e8b84dbb94d1fa74117a199ea6423.zip
pythonPackages.pygobject3: 3.24.1 → 3.26.1
Diffstat (limited to 'pkgs/development/python-modules/pygobject')
-rw-r--r--pkgs/development/python-modules/pygobject/3.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/pygobject/3.nix b/pkgs/development/python-modules/pygobject/3.nix
index 6afd10596bc..c7547c852d5 100644
--- a/pkgs/development/python-modules/pygobject/3.nix
+++ b/pkgs/development/python-modules/pygobject/3.nix
@@ -1,14 +1,14 @@
 { stdenv, fetchurl, buildPythonPackage, python, pkgconfig, glib, gobjectIntrospection, pycairo, cairo, which, ncurses}:
 
 buildPythonPackage rec {
-  major = "3.24";
+  major = "3.26";
   minor = "1";
   name = "pygobject-${major}.${minor}";
   format = "other";
 
   src = fetchurl {
     url = "mirror://gnome/sources/pygobject/${major}/${name}.tar.xz";
-    sha256 = "1zdzznrj2s1gsrv2z4r0n88fzba8zjc1n2r313xi77lhl1daja56";
+    sha256 = "1afi0jdjd9sanrzjwhv7z1k7qxlb91fqa6yqc2dbpjkhkjdpnmzm";
   };
 
   outputs = [ "out" "dev" ];
@@ -19,7 +19,7 @@ buildPythonPackage rec {
   propagatedBuildInputs = [ pycairo cairo ];
 
   meta = {
-    homepage = http://live.gnome.org/PyGObject;
+    homepage = https://pygobject.readthedocs.io/;
     description = "Python bindings for Glib";
     platforms = stdenv.lib.platforms.unix;
   };