forked from mirrors/nixpkgs
Merge pull request #15464 from seschwar/livestreamer-curses
pythonPackages.livestreamer-curses: init at 1.5.2
This commit is contained in:
commit
4a513bb101
|
@ -13842,6 +13842,25 @@ in modules // {
|
|||
};
|
||||
};
|
||||
|
||||
livestreamer-curses = buildPythonPackage rec {
|
||||
version = "1.5.2";
|
||||
name = "livestreamer-curses-${version}";
|
||||
disabled = isPyPy;
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://github.com/gapato/livestreamer-curses/archive/v${version}.tar.gz";
|
||||
sha256 = "1v49sym6mrci9dxy0a7cpbp4bv6fg2ijj6rwk4wzg18c2x4qzkhn";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with self; [ curses livestreamer ];
|
||||
|
||||
meta = {
|
||||
homepage = https://github.com/gapato/livestreamer-curses;
|
||||
description = "Curses frontend for livestreamer";
|
||||
license = licenses.mit;
|
||||
};
|
||||
};
|
||||
|
||||
oauth = buildPythonPackage (rec {
|
||||
name = "oauth-1.0.1";
|
||||
|
||||
|
|
Loading…
Reference in a new issue