pyqt5_with_qtwebkit: add warning comment

This commit is contained in:
Dmitry Kalinkin 2018-12-26 11:06:30 -05:00
parent 97ec7a9ab9
commit 07a67363b7
No known key found for this signature in database
GPG key ID: 5157B3EC8B2CA333

View file

@ -614,6 +614,12 @@ in {
pyqt5 = pkgs.libsForQt5.callPackage ../development/python-modules/pyqt/5.x.nix {
pythonPackages = self;
};
/*
`pyqt5_with_qtwebkit` should not be used by python libraries in
pkgs/development/python-modules/*. Putting this attribute in
`propagatedBuildInputs` may cause collisions.
*/
pyqt5_with_qtwebkit = self.pyqt5.override { withWebKit = true; };
pysc2 = callPackage ../development/python-modules/pysc2 { };