2016-11-14 20:36:59 +00:00
|
|
|
{ stdenv, fetchurl, python27Packages, wmctrl }:
|
|
|
|
|
2018-03-22 16:31:06 +00:00
|
|
|
with python27Packages; buildPythonPackage rec {
|
|
|
|
name = "plover-${version}";
|
|
|
|
version = "3.1.1";
|
2016-11-14 20:36:59 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "OpenSteno Plover stenography software";
|
|
|
|
maintainers = with maintainers; [ twey kovirobi ];
|
2018-03-22 16:31:06 +00:00
|
|
|
license = licenses.gpl2;
|
2016-11-14 20:36:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
src = fetchurl {
|
2018-03-22 16:31:06 +00:00
|
|
|
url = "https://github.com/openstenoproject/plover/archive/v${version}.tar.gz";
|
|
|
|
sha256 = "1hdg5491phx6svrxxsxp8v6n4b25y7y4wxw7x3bxlbyhaskgj53r";
|
2016-11-14 20:36:59 +00:00
|
|
|
};
|
|
|
|
|
2018-03-22 16:31:06 +00:00
|
|
|
buildInputs = [ pytest mock ];
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
six setuptools pyserial appdirs hidapi wxPython xlib wmctrl
|
|
|
|
];
|
|
|
|
};
|