about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorDee Anzorge <d.anzorge@gmail.com>2023-11-14 14:27:14 +0100
committerDee Anzorge <d.anzorge@gmail.com>2023-12-06 22:08:02 +0100
commit8d640bcc656f18253ba0843dfc57b7789924b756 (patch)
tree29cd50fc0ed0cd74511f6bec625dfcd5675237e6 /pkgs/development
parentb551d2c4c4f2c02d8873769fa5c3f483b4a2c096 (diff)
python3Packages.livestreamer-curses: drop
'livestreamer' itself has been removed from Nixpkgs. Additionally,
livestreamer-curses has seen no commits since 2015, and appears
unmaintained.
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/livestreamer-curses/default.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/pkgs/development/python-modules/livestreamer-curses/default.nix b/pkgs/development/python-modules/livestreamer-curses/default.nix
deleted file mode 100644
index 213caaf4fb30e..0000000000000
--- a/pkgs/development/python-modules/livestreamer-curses/default.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, isPyPy
-, livestreamer
-}:
-
-buildPythonPackage rec {
-  pname = "livestreamer-curses";
-  version = "1.5.2";
-  disabled = isPyPy;
-
-  src = fetchFromGitHub {
-    owner = "gapato";
-    repo = "livestreamer-curses";
-    rev = "v${version}";
-    hash = "sha256-Pi0PIOUhMMAWft9ackB04IgF6DyPrXppNqyVjozIjN4=";
-  };
-
-  propagatedBuildInputs = [ livestreamer ];
-
-  meta = with lib; {
-    homepage = "https://github.com/gapato/livestreamer-curses";
-    description = "Curses frontend for livestreamer";
-    license = licenses.mit;
-    maintainers = with maintainers; [ ];
-  };
-}