2021-01-25 08:26:54 +00:00
|
|
|
{ lib, fetchurl, python27Packages, python36Packages, wmctrl,
|
2019-10-19 10:44:27 +01:00
|
|
|
qtbase, mkDerivationWith }:
|
2016-11-14 20:36:59 +00:00
|
|
|
|
2018-03-22 17:18:32 +00:00
|
|
|
{
|
|
|
|
stable = with python27Packages; buildPythonPackage rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "plover";
|
2018-03-22 17:18:32 +00:00
|
|
|
version = "3.1.1";
|
2016-11-14 20:36:59 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-03-22 17:18:32 +00:00
|
|
|
description = "OpenSteno Plover stenography software";
|
|
|
|
maintainers = with maintainers; [ twey kovirobi ];
|
|
|
|
license = licenses.gpl2;
|
|
|
|
};
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/openstenoproject/plover/archive/v${version}.tar.gz";
|
|
|
|
sha256 = "1hdg5491phx6svrxxsxp8v6n4b25y7y4wxw7x3bxlbyhaskgj53r";
|
|
|
|
};
|
2016-11-14 20:36:59 +00:00
|
|
|
|
2021-06-03 11:09:11 +01:00
|
|
|
nativeBuildInputs = [ setuptools-scm ];
|
2018-03-22 17:18:32 +00:00
|
|
|
buildInputs = [ pytest mock ];
|
|
|
|
propagatedBuildInputs = [
|
2019-10-09 12:42:00 +01:00
|
|
|
six setuptools pyserial appdirs hidapi wxPython xlib wmctrl dbus-python
|
2018-03-22 17:18:32 +00:00
|
|
|
];
|
2016-11-14 20:36:59 +00:00
|
|
|
};
|
|
|
|
|
2019-10-19 10:44:27 +01:00
|
|
|
dev = with python36Packages; mkDerivationWith buildPythonPackage rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "plover";
|
2018-05-12 23:37:42 +01:00
|
|
|
version = "4.0.0.dev8";
|
2018-03-22 17:18:32 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-03-22 17:18:32 +00:00
|
|
|
description = "OpenSteno Plover stenography software";
|
|
|
|
maintainers = with maintainers; [ twey kovirobi ];
|
|
|
|
license = licenses.gpl2;
|
|
|
|
};
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/openstenoproject/plover/archive/v${version}.tar.gz";
|
2018-05-12 23:37:42 +01:00
|
|
|
sha256 = "1wxkmik1zyw5gqig5r0cas5v6f5408fbnximzw610rdisqy09rxp";
|
2018-03-22 17:18:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# I'm not sure why we don't find PyQt5 here but there's a similar
|
|
|
|
# sed on many of the platforms Plover builds for
|
|
|
|
postPatch = "sed -i /PyQt5/d setup.cfg";
|
|
|
|
|
2018-05-12 23:37:42 +01:00
|
|
|
checkInputs = [ pytest mock ];
|
2019-10-09 12:55:49 +01:00
|
|
|
propagatedBuildInputs = [ Babel pyqt5 xlib pyserial appdirs wcwidth setuptools ];
|
2019-10-19 10:44:27 +01:00
|
|
|
|
|
|
|
dontWrapQtApps = true;
|
2019-12-10 23:23:57 +00:00
|
|
|
|
|
|
|
preFixup = ''
|
|
|
|
makeWrapperArgs+=("''${qtWrapperArgs[@]}")
|
|
|
|
'';
|
2018-03-22 17:18:32 +00:00
|
|
|
};
|
|
|
|
}
|