nixpkgs/pkgs/tools/misc/yle-dl/default.nix

30 lines
896 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, rtmpdump, php, wget, python3Packages, ffmpeg_3 }:
2015-11-22 00:44:32 +03:00
2020-10-11 03:18:51 +03:00
python3Packages.buildPythonApplication rec {
pname = "yle-dl";
2020-10-27 13:56:30 +03:00
version = "20201022";
2015-11-22 00:44:32 +03:00
src = fetchFromGitHub {
owner = "aajanki";
repo = "yle-dl";
rev = version;
2020-10-27 13:56:30 +03:00
sha256 = "0p56pb3wxdzqgs4fsh4hn06xs0mgzgznqqr0bn2vkkkibnkr1asp";
2015-11-22 00:44:32 +03:00
};
2020-10-11 03:18:51 +03:00
propagatedBuildInputs = with python3Packages; [
attrs ConfigArgParse ffmpeg_3 future lxml requests
];
2020-10-11 03:18:51 +03:00
pythonPath = [ rtmpdump php wget ];
2017-11-03 21:01:28 +03:00
doCheck = false; # tests require network access
2020-10-11 03:18:51 +03:00
checkInputs = with python3Packages; [ ffmpeg_3 pytest pytestrunner ];
2015-11-22 00:44:32 +03:00
meta = with lib; {
2015-11-22 00:44:32 +03:00
description = "Downloads videos from Yle (Finnish Broadcasting Company) servers";
homepage = "https://aajanki.github.io/yle-dl/";
2020-10-11 03:18:51 +03:00
license = licenses.gpl3Plus;
maintainers = with maintainers; [ dezgeg SuperSandro2000 ];
platforms = platforms.unix;
2015-11-22 00:44:32 +03:00
};
}