From 6a224c6f8fb1de5d5834b47d5b1f2b790e46e75f Mon Sep 17 00:00:00 2001 From: Sebastian Schwarz Date: Sat, 14 May 2016 19:15:17 +0200 Subject: [PATCH] pythonPackages.livestreamer-curses: init at 1.5.2 --- pkgs/top-level/python-packages.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 96041398002c..d86542e46a3c 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";