1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

pythonPackages.livestreamer-curses: init at 1.5.2

This commit is contained in:
Sebastian Schwarz 2016-05-14 19:15:17 +02:00
parent 934be04e19
commit 6a224c6f8f

View file

@ -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";