diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 96041398002..d86542e46a3 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -13831,6 +13831,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";