depot/third_party/nixpkgs/pkgs/development/python-modules/livestreamer-curses/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

26 lines
577 B
Nix

{ 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;
};
}