about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/livestreamer-curses/default.nix
blob: 213caaf4fb30e5d27aebe3e9178943beb02b0cb8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ 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; [ ];
  };
}