mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
29 lines
615 B
Nix
29 lines
615 B
Nix
{ 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}";
|
|
sha256 = "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; [ ];
|
|
};
|
|
}
|