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:21:38 +0100
committerDee Anzorge <d.anzorge@gmail.com>2023-12-06 22:07:55 +0100
commitb551d2c4c4f2c02d8873769fa5c3f483b4a2c096 (patch)
treef737d5c994bb8cfac94a4c58ef3a36cb69578b22 /pkgs/development
parentbf744fe90419885eefced41b3e5ae442d732712d (diff)
python3Packages.livestreamer: drop
Project appears unmaintained. Last upstream release was on 2015-05-02,
and their last commit was on 2016-02-02.

Nixpkgs includes 'streamlink' in the top level, which is a currently
maintained fork of livestreamer.
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/livestreamer/default.nix38
1 files changed, 0 insertions, 38 deletions
diff --git a/pkgs/development/python-modules/livestreamer/default.nix b/pkgs/development/python-modules/livestreamer/default.nix
deleted file mode 100644
index c7c4b06a97465..0000000000000
--- a/pkgs/development/python-modules/livestreamer/default.nix
+++ /dev/null
@@ -1,38 +0,0 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, isPyPy
-, makeWrapper
-, rtmpdump
-, pycrypto
-, requests
-}:
-
-buildPythonPackage rec {
-  pname = "livestreamer";
-  version = "1.12.2";
-  disabled = isPyPy;
-
-  src = fetchFromGitHub {
-    owner = "chrippa";
-    repo = "livestreamer";
-    rev = "v${version}";
-    hash = "sha256-PqqyBh+oMmu7Ynly3fqx/+6mQYX+6SpI0Okj2O+YLz0=";
-  };
-
-  nativeBuildInputs = [ makeWrapper ];
-
-  propagatedBuildInputs = [ rtmpdump pycrypto requests ];
-
-  postInstall = ''
-    wrapProgram $out/bin/livestreamer --prefix PATH : ${lib.makeBinPath [ rtmpdump ]}
-  '';
-
-  meta = with lib; {
-    homepage = "http://livestreamer.tanuki.se";
-    description = "Livestreamer is CLI program that extracts streams from various services and pipes them into a video player of choice";
-    license = licenses.bsd2;
-    maintainers = with maintainers; [ ];
-  };
-
-}