pythonPackages.pygobject: Disable on Python 3.9 due to build failure

This commit is contained in:
Sandro Jäckel 2021-01-04 03:59:48 +01:00
parent ccc782e4df
commit bf117cc44a
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -1,9 +1,10 @@
{ stdenv, fetchurl, python, buildPythonPackage, pkgconfig, glib, isPy3k }: { stdenv, fetchurl, python, buildPythonPackage, pkgconfig, glib, isPy3k, pythonAtLeast }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pygobject"; pname = "pygobject";
version = "2.28.7"; version = "2.28.7";
format = "other"; format = "other";
disabled = pythonAtLeast "3.9";
src = fetchurl { src = fetchurl {
url = "mirror://gnome/sources/pygobject/2.28/${pname}-${version}.tar.xz"; url = "mirror://gnome/sources/pygobject/2.28/${pname}-${version}.tar.xz";