nixpkgs/pkgs/applications/misc/plover/default.nix

23 lines
656 B
Nix
Raw Normal View History

{ stdenv, fetchurl, python27Packages, wmctrl }:
2018-03-22 16:31:06 +00:00
with python27Packages; buildPythonPackage rec {
name = "plover-${version}";
version = "3.1.1";
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;
};
src = fetchurl {
2018-03-22 16:31:06 +00:00
url = "https://github.com/openstenoproject/plover/archive/v${version}.tar.gz";
sha256 = "1hdg5491phx6svrxxsxp8v6n4b25y7y4wxw7x3bxlbyhaskgj53r";
};
2018-03-22 16:31:06 +00:00
buildInputs = [ pytest mock ];
propagatedBuildInputs = [
six setuptools pyserial appdirs hidapi wxPython xlib wmctrl
];
};