python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / twspace-dl / default.nix
blobe1a3f06b2e99feff6c2fa749a2cec32ed23e9a86
1 { lib, python3Packages, ffmpeg }:
3 python3Packages.buildPythonApplication rec {
4   pname = "twspace-dl";
5   version = "2022.6.6.1";
7   format = "setuptools";
9   src = python3Packages.fetchPypi {
10     inherit pname version;
11     sha256 = "47622f306f2601185b00d6ef24f821810adcc581b7361c423eec979263725afc";
12   };
14   propagatedBuildInputs = with python3Packages; [
15     requests
16   ];
18   makeWrapperArgs = [ "--prefix PATH : ${lib.makeBinPath [ ffmpeg ]}" ];
20   pythonImportsCheck = [ "twspace_dl" ];
22   meta = with lib; {
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";
28   };