468cb5980b
Since GNOME version is now 40, it no longer makes sense to use the old attribute name.
68 lines
1.2 KiB
Nix
68 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, buildPythonPackage
|
|
, pkg-config
|
|
, glib
|
|
, gobject-introspection
|
|
, pycairo
|
|
, cairo
|
|
, which
|
|
, ncurses
|
|
, meson
|
|
, ninja
|
|
, isPy3k
|
|
, gnome
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pygobject";
|
|
version = "3.40.1";
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
disabled = !isPy3k;
|
|
|
|
format = "other";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
sha256 = "0d80g5kgf2i9cginyhalvb7ibfk9g30yilqzmcsw6h6byj8xbih0";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
meson
|
|
ninja
|
|
gobject-introspection
|
|
];
|
|
|
|
buildInputs = [
|
|
glib
|
|
gobject-introspection
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
ncurses
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
pycairo
|
|
cairo
|
|
];
|
|
|
|
passthru = {
|
|
updateScript = gnome.updateScript {
|
|
packageName = pname;
|
|
attrPath = "python3.pkgs.${pname}3";
|
|
versionPolicy = "odd-unstable";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://pygobject.readthedocs.io/";
|
|
description = "Python bindings for Glib";
|
|
license = licenses.lgpl21Plus;
|
|
maintainers = with maintainers; [ jtojnar ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|