summary refs log tree commit diff
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorFrederik Rietdijk <freddyrietdijk@fridh.nl>2016-05-15 10:22:48 +0200
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2016-05-15 10:22:48 +0200
commit4a513bb101fc6551fe8e233a3bb79566fb182bb7 (patch)
tree209c81121cdc34a0ba603a3b7be19c83c69d75a4 /pkgs/top-level
parent3a5781aa77f78ab5e4229b3a0820e26e2259ecf3 (diff)
parent6a224c6f8fb1de5d5834b47d5b1f2b790e46e75f (diff)
downloadnixpkgs-4a513bb101fc6551fe8e233a3bb79566fb182bb7.tar
nixpkgs-4a513bb101fc6551fe8e233a3bb79566fb182bb7.tar.gz
nixpkgs-4a513bb101fc6551fe8e233a3bb79566fb182bb7.tar.bz2
nixpkgs-4a513bb101fc6551fe8e233a3bb79566fb182bb7.tar.lz
nixpkgs-4a513bb101fc6551fe8e233a3bb79566fb182bb7.tar.xz
nixpkgs-4a513bb101fc6551fe8e233a3bb79566fb182bb7.tar.zst
nixpkgs-4a513bb101fc6551fe8e233a3bb79566fb182bb7.zip
Merge pull request #15464 from seschwar/livestreamer-curses
pythonPackages.livestreamer-curses: init at 1.5.2
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/python-packages.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 2fbee05f4e2..806da89a388 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -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";