2017-12-28 14:38:39 +01:00
|
|
|
{ stdenv, fetchFromGitHub, rtmpdump, php, pythonPackages, ffmpeg }:
|
2015-11-21 22:44:32 +01:00
|
|
|
|
2017-07-21 10:24:21 +02:00
|
|
|
pythonPackages.buildPythonApplication rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "yle-dl";
|
2018-02-17 21:33:51 +01:00
|
|
|
version = "2.31";
|
2015-11-21 22:44:32 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "aajanki";
|
|
|
|
repo = "yle-dl";
|
|
|
|
rev = version;
|
2018-02-17 21:33:51 +01:00
|
|
|
sha256 = "0k93p9csyjm0w33diwl5s22kzs3g78jl3n9k8nxxpqrybfjl912f";
|
2015-11-21 22:44:32 +01:00
|
|
|
};
|
|
|
|
|
2020-01-16 12:09:01 +01:00
|
|
|
propagatedBuildInputs = with pythonPackages; [
|
|
|
|
lxml pyamf pycrypto requests future ffmpeg setuptools
|
|
|
|
];
|
2017-11-03 19:01:28 +01:00
|
|
|
pythonPath = [ rtmpdump php ];
|
|
|
|
|
|
|
|
doCheck = false; # tests require network access
|
|
|
|
checkInputs = with pythonPackages; [ pytest pytestrunner ];
|
2015-11-21 22:44:32 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Downloads videos from Yle (Finnish Broadcasting Company) servers";
|
|
|
|
homepage = https://aajanki.github.io/yle-dl/;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = [ maintainers.dezgeg ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|