mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
41 lines
1.1 KiB
Nix
41 lines
1.1 KiB
Nix
{ stdenv, fetchurl, buildPythonPackage, pkgconfig, glib, gobject-introspection,
|
|
pycairo, cairo, which, ncurses, meson, ninja, isPy3k, gnome3 }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pygobject";
|
|
version = "3.34.0";
|
|
|
|
format = "other";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
sha256 = "06i7ynnbvgpz0gw09zsjbvhgcp5qz4yzdifw27qjwdazg2mckql7";
|
|
};
|
|
|
|
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; [ jtojnar ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|