2021-01-25 09:26:54 +01:00
|
|
|
{ lib
|
2018-10-17 20:36:06 +02:00
|
|
|
, buildPythonPackage
|
2021-10-30 16:54:29 +02:00
|
|
|
, fetchFromGitHub
|
2018-10-17 20:36:06 +02:00
|
|
|
, isPyPy
|
|
|
|
, livestreamer
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "livestreamer-curses";
|
2021-10-31 22:25:42 +01:00
|
|
|
version = "1.5.2";
|
2018-10-17 20:36:06 +02:00
|
|
|
disabled = isPyPy;
|
|
|
|
|
2021-10-30 16:54:29 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "gapato";
|
|
|
|
repo = "livestreamer-curses";
|
2021-10-31 22:25:42 +01:00
|
|
|
rev = "v${version}";
|
2021-10-30 16:54:29 +02:00
|
|
|
sha256 = "sha256-Pi0PIOUhMMAWft9ackB04IgF6DyPrXppNqyVjozIjN4=";
|
2018-10-17 20:36:06 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ livestreamer ];
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/gapato/livestreamer-curses";
|
2018-10-17 20:36:06 +02:00
|
|
|
description = "Curses frontend for livestreamer";
|
|
|
|
license = licenses.mit;
|
2021-10-31 22:25:42 +01:00
|
|
|
maintainers = with maintainers; [ ];
|
2018-10-17 20:36:06 +02:00
|
|
|
};
|
|
|
|
}
|