1 { lib, python3Packages, ffmpeg }:
3 python3Packages.buildPythonApplication rec {
5 version = "2022.6.6.1";
9 src = python3Packages.fetchPypi {
10 inherit pname version;
11 sha256 = "47622f306f2601185b00d6ef24f821810adcc581b7361c423eec979263725afc";
14 propagatedBuildInputs = with python3Packages; [
18 makeWrapperArgs = [ "--prefix PATH : ${lib.makeBinPath [ ffmpeg ]}" ];
20 pythonImportsCheck = [ "twspace_dl" ];
23 description = "A python module to download twitter spaces";
24 homepage = "https://github.com/HoloArchivists/twspace-dl";
25 license = licenses.gpl2Only;
26 maintainers = with maintainers; [ marsam ];
27 mainProgram = "twspace_dl";