Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 fetchFromGitHub, 4 buildPythonPackage, 5 requests, 6 six, 7 tqdm, 8}: 9 10buildPythonPackage { 11 pname = "mediafire-dl"; 12 version = "unstable-2023-09-07"; 13 format = "setuptools"; 14 15 src = fetchFromGitHub { 16 owner = "Juvenal-Yescas"; 17 repo = "mediafire-dl"; 18 rev = "bf9d461f43c5d5dc2900e08bcd4202a597a07ca0"; 19 hash = "sha256-9qACTNMkO/CH/qB6WiggIKwSiFIccgU7CH0UeGUaFb4="; 20 }; 21 22 propagatedBuildInputs = [ 23 requests 24 six 25 tqdm 26 ]; 27 28 pythonImportsCheck = [ "mediafire_dl" ]; 29 30 meta = with lib; { 31 description = "Simple command-line script to download files from mediafire based on gdown"; 32 homepage = "https://github.com/Juvenal-Yescas/mediafire-dl"; 33 license = licenses.mit; 34 maintainers = with maintainers; [ euxane ]; 35 mainProgram = "mediafire-dl"; 36 }; 37}