Skip to content

Commit

Permalink
pythonPackages.weboob: fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Kiwi authored and worldofpeace committed Mar 13, 2019
1 parent 28d4943 commit f0bd271
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions pkgs/development/python-modules/weboob/default.nix
Expand Up @@ -40,6 +40,13 @@ in buildPythonPackage rec {
}; p' weboob/browser/browsers.py weboob/browser/pages.py
'';

# Would fail with `Could not find executable: pyuic5`.
# That executable will be looked up from an environment variable
# in this format when available
#
# See: https://git.weboob.org/weboob/weboob/blob/1.3/setup.py#L32
PYUIC5_EXECUTABLE = "${pyqt5}/bin/pyuic5";

setupPyBuildFlags = ["--qt" "--xdg"];

checkInputs = [ nose ];
Expand Down

0 comments on commit f0bd271

Please sign in to comment.