summary refs log tree commit diff
path: root/pkgs/applications/misc/plover
diff options
context:
space:
mode:
authorJames Kay <twey@twey.co.uk>2018-05-12 23:37:42 +0100
committerxeji <36407913+xeji@users.noreply.github.com>2018-05-13 00:37:42 +0200
commit98ae4b46c3ee3329c3ae814f5bf54987ebcda07c (patch)
tree2b01e10751630773e2ce7b80f9249c4296118433 /pkgs/applications/misc/plover
parent03d4694e6110fa9c16e88ee74085ea2068c27494 (diff)
downloadnixpkgs-98ae4b46c3ee3329c3ae814f5bf54987ebcda07c.tar
nixpkgs-98ae4b46c3ee3329c3ae814f5bf54987ebcda07c.tar.gz
nixpkgs-98ae4b46c3ee3329c3ae814f5bf54987ebcda07c.tar.bz2
nixpkgs-98ae4b46c3ee3329c3ae814f5bf54987ebcda07c.tar.lz
nixpkgs-98ae4b46c3ee3329c3ae814f5bf54987ebcda07c.tar.xz
nixpkgs-98ae4b46c3ee3329c3ae814f5bf54987ebcda07c.tar.zst
nixpkgs-98ae4b46c3ee3329c3ae814f5bf54987ebcda07c.zip
pythonPackages.plover.dev: 4.0.0.dev6 -> 4.0.0.dev8 (#40345)
Diffstat (limited to 'pkgs/applications/misc/plover')
-rw-r--r--pkgs/applications/misc/plover/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/misc/plover/default.nix b/pkgs/applications/misc/plover/default.nix
index 09558ff4c47..b9323ece1f4 100644
--- a/pkgs/applications/misc/plover/default.nix
+++ b/pkgs/applications/misc/plover/default.nix
@@ -24,7 +24,7 @@
 
   dev = with python36Packages; buildPythonPackage rec {
     name    = "plover-${version}";
-    version = "4.0.0.dev6";
+    version = "4.0.0.dev8";
 
     meta = with stdenv.lib; {
       description = "OpenSteno Plover stenography software";
@@ -34,14 +34,14 @@
 
     src = fetchurl {
       url    = "https://github.com/openstenoproject/plover/archive/v${version}.tar.gz";
-      sha256 = "067rkpqnjjxwyv9cwh9i925ndba6fvj6q0r56lizy0l26b4jc8rp";
+      sha256 = "1wxkmik1zyw5gqig5r0cas5v6f5408fbnximzw610rdisqy09rxp";
     };
 
     # 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";
 
-    buildInputs           = [ pytest mock ];
-    propagatedBuildInputs = [ Babel pyqt5 xlib pyserial appdirs ];
+    checkInputs           = [ pytest mock ];
+    propagatedBuildInputs = [ Babel pyqt5 xlib pyserial appdirs wcwidth ];
   };
 }