mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 13:03:34 +00:00
9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
43 lines
1.3 KiB
Nix
43 lines
1.3 KiB
Nix
{ stdenv, fetchurl, python, buildPythonPackage, pkg-config, glib, isPy3k, pythonAtLeast }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pygobject";
|
|
version = "2.28.7";
|
|
format = "other";
|
|
disabled = pythonAtLeast "3.9";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/pygobject/2.28/${pname}-${version}.tar.xz";
|
|
sha256 = "0nkam61rsn7y3wik3vw46wk5q2cjfh2iph57hl9m39rc8jijb7dv";
|
|
};
|
|
|
|
outputs = [ "out" "devdoc" ];
|
|
|
|
patches = stdenv.lib.optionals stdenv.isDarwin [
|
|
./pygobject-2.0-fix-darwin.patch
|
|
];
|
|
|
|
configureFlags = [ "--disable-introspection" ];
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ glib ];
|
|
|
|
# in a "normal" setup, pygobject and pygtk are installed into the
|
|
# same site-packages: we need a pth file for both. pygtk.py would be
|
|
# used to select a specific version, in our setup it should have no
|
|
# effect, but we leave it in case somebody expects and calls it.
|
|
postInstall = stdenv.lib.optionalString (!isPy3k) ''
|
|
mv $out/lib/${python.libPrefix}/site-packages/{pygtk.pth,${pname}-${version}.pth}
|
|
|
|
# Prevent wrapping of codegen files as these are meant to be
|
|
# executed by the python program
|
|
chmod a-x $out/share/pygobject/*/codegen/*.py
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://pygobject.readthedocs.io/";
|
|
description = "Python bindings for GLib";
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|