linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / networking / moodle-dl / default.nix
blob95140467f7a2c02ec93910e58ada04fee5d5525c
1 { lib, python3Packages }:
3 python3Packages.buildPythonApplication rec {
4   pname = "moodle-dl";
5   version = "2.1.2.5";
7   src = python3Packages.fetchPypi {
8     inherit pname version;
9     sha256 = "1gc4037dwyi48h4vi0bam23rr7pfyn6jrz334radz0r6rk94y8lz";
10   };
12   # nixpkgs (and the GitHub upstream for readchar) are missing 2.0.1
13   postPatch = ''
14     substituteInPlace setup.py --replace 'readchar>=2.0.1' 'readchar>=2.0.0'
15   '';
17   propagatedBuildInputs = with python3Packages; [
18     sentry-sdk
19     colorama
20     readchar
21     youtube-dl
22     certifi
23     html2text
24     requests
25     slixmpp
26   ];
28   meta = with lib; {
29     homepage = "https://github.com/C0D3D3V/Moodle-Downloader-2";
30     maintainers = [ maintainers.kmein ];
31     description = "A Moodle downloader that downloads course content fast from Moodle";
32     license = licenses.gpl3Plus;
33   };