summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2014-09-10 14:35:26 +0200
committerDomen Kožar <domen@dev.si>2014-09-10 14:36:06 +0200
commit3ef16c8965294a4d45aebd71a651dbb2cae8f697 (patch)
treef674bfa47c5aad845b2cbc539956b256607b8a7c /pkgs
parent6c6f93c458c1190aae4acd1b097156cac221611f (diff)
downloadnixlib-3ef16c8965294a4d45aebd71a651dbb2cae8f697.tar
nixlib-3ef16c8965294a4d45aebd71a651dbb2cae8f697.tar.gz
nixlib-3ef16c8965294a4d45aebd71a651dbb2cae8f697.tar.bz2
nixlib-3ef16c8965294a4d45aebd71a651dbb2cae8f697.tar.lz
nixlib-3ef16c8965294a4d45aebd71a651dbb2cae8f697.tar.xz
nixlib-3ef16c8965294a4d45aebd71a651dbb2cae8f697.tar.zst
nixlib-3ef16c8965294a4d45aebd71a651dbb2cae8f697.zip
pythonPackages.livestream: use requests2
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/top-level/python-packages.nix21
1 files changed, 18 insertions, 3 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 1bdfcaa0d3ea..b89bd1908bfe 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -2189,6 +2189,21 @@ rec {
     };
   };
 
+  singledispatch = buildPythonPackage rec {
+    name = "singledispatch-3.4.0.3";
+
+    propagatedBuildInputs = [ six ];
+
+    src = fetchurl {
+      url = "https://pypi.python.org/packages/source/s/singledispatch/${name}.tar.gz";
+      md5 = "af2fc6a3d6cc5a02d0bf54d909785fcb";
+    };
+
+    meta = with stdenv.lib; {
+      homepage = http://docs.python.org/3/library/functools.html;
+    };
+  };
+
   gcutil = buildPythonPackage rec {
     name = "gcutil-1.15.0";
     meta.maintainers = [ stdenv.lib.maintainers.phreedom ];
@@ -5387,7 +5402,7 @@ rec {
     };
 
     buildInputs = [ pkgs.makeWrapper ];
-    propagatedBuildInputs = [ requests pkgs.rtmpdump pycrypto ];
+    propagatedBuildInputs = [ requests2 pkgs.rtmpdump pycrypto singledispatch futures ];
     postInstall = ''
       wrapProgram $out/bin/livestreamer --prefix PATH : ${pkgs.rtmpdump}/bin
     '';
@@ -7106,11 +7121,11 @@ rec {
 
 
   requests = buildPythonPackage rec {
-    name = "requests-1.2.0";
+    name = "requests-1.2.3";
 
     src = fetchurl {
       url = "http://pypi.python.org/packages/source/r/requests/${name}.tar.gz";
-      md5 = "22af2682233770e5468a986f451c51c0";
+      md5 = "adbd3f18445f7fe5e77f65c502e264fb";
     };
 
     meta = {