about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/livestreamer-curses/default.nix
blob: 846f7633924b6ca0f42a4271799c11f4fa1a4d28 (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
{ stdenv
, buildPythonPackage
, fetchurl
, isPyPy
, livestreamer
}:

buildPythonPackage rec {
  version = "1.5.2";
  pname = "livestreamer-curses";
  disabled = isPyPy;

  src = fetchurl {
    url = "https://github.com/gapato/livestreamer-curses/archive/v${version}.tar.gz";
    sha256 = "1v49sym6mrci9dxy0a7cpbp4bv6fg2ijj6rwk4wzg18c2x4qzkhn";
  };

  propagatedBuildInputs = [ livestreamer ];

  meta = with stdenv.lib; {
    homepage = "https://github.com/gapato/livestreamer-curses";
    description = "Curses frontend for livestreamer";
    license = licenses.mit;
  };

}