pythonPackages.infoqscraper: init at 0.1.0

This commit is contained in:
Edward Tjörnhammar 2015-07-09 13:05:04 +02:00
parent 9b8f66180f
commit 0109c5a6fb

View file

@ -6445,6 +6445,30 @@ let
};
};
infoqscraper = buildPythonPackage rec {
name = pname + "-" + version;
version = "0.1.0";
pname = "infoqscraper";
src = pkgs.fetchFromGitHub {
owner = "cykl";
repo = pname;
rev = "v" + version;
sha256 = "07mxp4mla7fwfc032f3mxrhjarnhkjqdxxibf9ba87c93z3dq8jj";
};
buildInputs = with self; [ html5lib ];
propagatedBuildInputs = (with self; [ six beautifulsoup4 ])
++ (with pkgs; [ ffmpeg swftools rtmpdump ]);
meta = {
description = "Discover presentations and/or create a movie consisting of slides and audio track from an infoq url";
homepage = "https://github.com/cykl/infoqscraper/wiki";
license = licenses.mit;
maintainers = with maintainers; [ edwtjo ];
};
};
iptools = buildPythonPackage rec {
version = "0.6.1";
name = "iptools-${version}";