summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobert Schütz <nix@dotlambda.de>2022-06-05 19:08:51 +0000
committerRobert Schütz <nix@dotlambda.de>2022-06-07 16:38:21 +0000
commit2cbf885d3085fcaf47a2c66996ff524001c27217 (patch)
tree817e1b6857d24848e2835e6e60eecc3c285bf905
parentfa289b54cb1164e5d7531329f59e515558c62bd1 (diff)
downloadnixpkgs-2cbf885d3085fcaf47a2c66996ff524001c27217.tar
nixpkgs-2cbf885d3085fcaf47a2c66996ff524001c27217.tar.gz
nixpkgs-2cbf885d3085fcaf47a2c66996ff524001c27217.tar.bz2
nixpkgs-2cbf885d3085fcaf47a2c66996ff524001c27217.tar.lz
nixpkgs-2cbf885d3085fcaf47a2c66996ff524001c27217.tar.xz
nixpkgs-2cbf885d3085fcaf47a2c66996ff524001c27217.tar.zst
nixpkgs-2cbf885d3085fcaf47a2c66996ff524001c27217.zip
plover.stable: remove
-rw-r--r--pkgs/applications/misc/plover/default.nix25
1 files changed, 1 insertions, 24 deletions
diff --git a/pkgs/applications/misc/plover/default.nix b/pkgs/applications/misc/plover/default.nix
index 02162a4039e..6bd4ee6b3c1 100644
--- a/pkgs/applications/misc/plover/default.nix
+++ b/pkgs/applications/misc/plover/default.nix
@@ -2,30 +2,7 @@
   qtbase, mkDerivationWith }:
 
 {
-  stable = with python27Packages; buildPythonPackage rec {
-    pname = "plover";
-    version = "3.1.1";
-
-    meta = with lib; {
-      broken = stdenv.isDarwin;
-      description = "OpenSteno Plover stenography software";
-      maintainers = with maintainers; [ twey kovirobi ];
-      license     = licenses.gpl2;
-    };
-
-    src = fetchFromGitHub {
-      owner = "openstenoproject";
-      repo = "plover";
-      rev = "v${version}";
-      sha256 = "sha256-LIhTwHMphg+xTR9NKvjAZ6p0mmqPNcZd9C4cgnenmYQ=";
-    };
-
-    nativeBuildInputs     = [ setuptools-scm ];
-    buildInputs           = [ pytest mock ];
-    propagatedBuildInputs = [
-      six setuptools pyserial appdirs hidapi wxPython xlib wmctrl dbus-python
-    ];
-  };
+  stable = throw "plover.stable was removed because it used Python 2. Use plover.dev instead."; # added 2022-06-05
 
   dev = with python3Packages; mkDerivationWith buildPythonPackage rec {
     pname = "plover";