about summary refs log tree commit diff
path: root/pkgs/tools/misc/twspace-dl/default.nix
blob: e1a3f06b2e99feff6c2fa749a2cec32ed23e9a86 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ lib, python3Packages, ffmpeg }:

python3Packages.buildPythonApplication rec {
  pname = "twspace-dl";
  version = "2022.6.6.1";

  format = "setuptools";

  src = python3Packages.fetchPypi {
    inherit pname version;
    sha256 = "47622f306f2601185b00d6ef24f821810adcc581b7361c423eec979263725afc";
  };

  propagatedBuildInputs = with python3Packages; [
    requests
  ];

  makeWrapperArgs = [ "--prefix PATH : ${lib.makeBinPath [ ffmpeg ]}" ];

  pythonImportsCheck = [ "twspace_dl" ];

  meta = with lib; {
    description = "A python module to download twitter spaces";
    homepage = "https://github.com/HoloArchivists/twspace-dl";
    license = licenses.gpl2Only;
    maintainers = with maintainers; [ marsam ];
    mainProgram = "twspace_dl";
  };
}