gnome-doc-utils: do not propagate Python

That breaks packages that rely on Python like itstool does.

https://github.com/NixOS/nixpkgs/pull/72342#issuecomment-548250501
This commit is contained in:
Jan Tojnar 2019-11-01 01:20:45 +01:00
parent ad1f06f79c
commit dafa543bf8
No known key found for this signature in database
GPG key ID: 7FAB2A15F7A607A4

View file

@ -29,6 +29,11 @@ python2Packages.buildPythonApplication rec {
};
};
postFixup = ''
# Do not propagate Python
rm $out/nix-support/propagated-build-inputs
'';
meta = with stdenv.lib; {
description = "Collection of documentation utilities for the GNOME project";
homepage = "https://gitlab.gnome.org/GNOME/gnome-doc-utils";