3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #195168 from marsam/add-twspace-dl

twspace-dl: init at 2022.6.6.1
This commit is contained in:
Mario Rodas 2022-10-09 19:18:28 -05:00 committed by GitHub
commit 86cc7329e4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,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";
};
}

View file

@ -12053,6 +12053,8 @@ with pkgs;
twitterBootstrap = callPackage ../development/web/twitter-bootstrap {};
twspace-dl = callPackage ../tools/misc/twspace-dl { };
twtxt = python3Packages.callPackage ../applications/networking/twtxt { };
twurl = callPackage ../tools/misc/twurl { };