Merge pull request #18045 from KoviRobi/python-plover-update

Python plover fix
This commit is contained in:
Frederik Rietdijk 2016-09-27 10:32:34 +02:00 committed by GitHub
commit da4710f5ea
1 changed files with 8 additions and 3 deletions

View File

@ -14189,7 +14189,6 @@ in modules // {
description = "OpenSteno Plover stenography software";
maintainers = with maintainers; [ twey kovirobi ];
license = licenses.gpl2;
broken = true;
};
src = pkgs.fetchurl {
@ -14197,8 +14196,14 @@ in modules // {
sha256 = "1jja37nhiypdx1z6cazp8ffsf0z3yqmpdbprpdzf668lcb422rl0";
};
buildInputs = with self; [ pytest ];
propagatedBuildInputs = with self; [ wxPython pyserial hidapi xlib appdirs pkgs.wmctrl mock ];
# This is a fix for https://github.com/pypa/pip/issues/3624 causing regression https://github.com/pypa/pip/issues/3781
postPatch = ''
substituteInPlace setup.py --replace " in sys_platform" " == sys_platform"
'';
buildInputs = with self; [ pytest mock ];
propagatedBuildInputs = with self; [ six setuptools pyserial appdirs hidapi
wxPython xlib pkgs.wmctrl ];
};
pygal = buildPythonPackage rec {