From 8a1ccb5f7093702afd6ed135539222683bc4d09d Mon Sep 17 00:00:00 2001 From: Kovacsics Robert Date: Mon, 2 May 2016 15:09:06 +0100 Subject: [PATCH] plover: 2.5.8 -> 3.0.0 (#15140) --- pkgs/top-level/python-packages.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 9228ca8feca..c85b1ca2508 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -12579,22 +12579,21 @@ in modules // { plover = buildPythonPackage rec { name = "plover-${version}"; - version = "2.5.8"; + version = "3.0.0"; disabled = !isPy27; meta = { description = "OpenSteno Plover stenography software"; - maintainers = [ maintainers.twey ]; + maintainers = with maintainers; [ twey kovirobi ]; license = licenses.gpl2; }; src = pkgs.fetchurl { url = "https://github.com/openstenoproject/plover/archive/v${version}.tar.gz"; - sha256 = "23f7824a715f93eb2c41d5bafd0c6f3adda92998e9321e1ee029abe7a6ab41e5"; + sha256 = "1jja37nhiypdx1z6cazp8ffsf0z3yqmpdbprpdzf668lcb422rl0"; }; - propagatedBuildInputs = with self; [ wxPython pyserial xlib appdirs pkgs.wmctrl ]; - preConfigure = "substituteInPlace setup.py --replace /usr/share usr/share"; + propagatedBuildInputs = with self; [ wxPython30 pyserial hidapi xlib appdirs pkgs.wmctrl mock ]; }; pygal = buildPythonPackage rec {