4d5a95770c
GitOrigin-RevId: 3c5319ad3aa51551182ac82ea17ab1c6b0f0df89
31 lines
701 B
Nix
31 lines
701 B
Nix
{ lib, python3Packages }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "moodle-dl";
|
|
version = "2.2.2.4";
|
|
|
|
src = python3Packages.fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-76JU/uYJH7nVWCR+d8vvjYCCSMfe/8R9l756AmzZPHU=";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
sentry-sdk
|
|
colorama
|
|
yt-dlp
|
|
certifi
|
|
html2text
|
|
requests
|
|
aioxmpp
|
|
];
|
|
|
|
# upstream has no tests
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/C0D3D3V/Moodle-Downloader-2";
|
|
maintainers = [ maintainers.kmein ];
|
|
description = "A Moodle downloader that downloads course content fast from Moodle";
|
|
license = licenses.gpl3Plus;
|
|
};
|
|
}
|