summary refs log tree commit diff
path: root/pkgs/development/python-modules/livestreamer
diff options
context:
space:
mode:
authorPavol Rusnak <pavol@rusnak.io>2020-05-04 20:32:01 +0200
committerJon <jonringer@users.noreply.github.com>2020-05-04 18:49:45 -0700
commit420124adf879fded33ec58233e37416fd4f55720 (patch)
tree57108e95c9edca6f1cf28930068b4a5c02676e51 /pkgs/development/python-modules/livestreamer
parent3dca1ffee8a5e3f009a6b91a2bce138cebec531f (diff)
downloadnixpkgs-420124adf879fded33ec58233e37416fd4f55720.tar
nixpkgs-420124adf879fded33ec58233e37416fd4f55720.tar.gz
nixpkgs-420124adf879fded33ec58233e37416fd4f55720.tar.bz2
nixpkgs-420124adf879fded33ec58233e37416fd4f55720.tar.lz
nixpkgs-420124adf879fded33ec58233e37416fd4f55720.tar.xz
nixpkgs-420124adf879fded33ec58233e37416fd4f55720.tar.zst
nixpkgs-420124adf879fded33ec58233e37416fd4f55720.zip
python: remove isPy33, isPy34
Diffstat (limited to 'pkgs/development/python-modules/livestreamer')
-rw-r--r--pkgs/development/python-modules/livestreamer/default.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/livestreamer/default.nix b/pkgs/development/python-modules/livestreamer/default.nix
index da789c0f6a6..83bd4bcfb72 100644
--- a/pkgs/development/python-modules/livestreamer/default.nix
+++ b/pkgs/development/python-modules/livestreamer/default.nix
@@ -7,7 +7,6 @@
 , singledispatch
 , futures
 , isPy27
-, isPy33
 }:
 
 buildPythonPackage rec {
@@ -23,8 +22,7 @@ buildPythonPackage rec {
   buildInputs = [ pkgs.makeWrapper ];
 
   propagatedBuildInputs = [ pkgs.rtmpdump pycrypto requests ]
-    ++ stdenv.lib.optionals isPy27 [ singledispatch futures ]
-    ++ stdenv.lib.optionals isPy33 [ singledispatch ];
+    ++ stdenv.lib.optionals isPy27 [ singledispatch futures ];
 
   postInstall = ''
     wrapProgram $out/bin/livestreamer --prefix PATH : ${pkgs.rtmpdump}/bin