Skip to content

Commit

Permalink
livestreamer: 1.8.0 -> 1.8.2; fix up dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Fuuzetsu committed Jun 6, 2014
1 parent b8af23e commit 10b9ce5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4637,17 +4637,17 @@ rec {
};
};

livestreamer = if isPy34 then null else (buildPythonPackage {
#version = "1.8.0";
name = "livestreamer-1.8.0";
livestreamer = if isPy34 then null else (buildPythonPackage rec {
version = "1.8.2";
name = "livestreamer-${version}";

src = fetchurl {
url = "https://github.com/chrippa/livestreamer/archive/v1.8.0.tar.gz";
sha256 = "0fzpznbnhzrqawxdljvyml5251wbr3nifdrvnmh2b8vz356js4l8";
url = "https://github.com/chrippa/livestreamer/archive/v${version}.tar.gz";
sha256 = "130h97qdb7qx8xg0gz54p5a6cb2zbffi5hsi305xf0ah9nf4rbrc";
};

buildInputs = [ pkgs.makeWrapper ];
propagatedBuildInputs = [ requests ];
propagatedBuildInputs = [ requests pkgs.rtmpdump pycrypto ];
postInstall = ''
wrapProgram $out/bin/livestreamer --prefix PATH : ${pkgs.rtmpdump}/bin
'';
Expand Down

0 comments on commit 10b9ce5

Please sign in to comment.