Merge pull request #181898 from marsam/add-mloader

mloader: init at 1.1.8
This commit is contained in:
Mario Rodas 2022-07-19 01:15:32 -05:00 committed by GitHub
commit c576c03e24
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,32 @@
{ lib, python3Packages, fetchFromGitHub }:
python3Packages.buildPythonApplication rec {
pname = "mloader";
version = "1.1.8";
# PyPI tarball doesn't ship requirements.txt
src = fetchFromGitHub {
owner = "hurlenko";
repo = "mloader";
rev = version;
sha256 = "sha256-cZ9jaRrzzc5M7QYGuLxMv1J1mlfp/UEJ4dugTuJIQ/A=";
};
propagatedBuildInputs = with python3Packages; [
click
protobuf
requests
];
# No tests in repository
doCheck = false;
pythonImportsCheck = [ "mloader" ];
meta = with lib; {
description = "Command-line tool to download manga from mangaplus";
homepage = "https://github.com/hurlenko/mloader";
license = licenses.gpl3Only;
maintainers = with maintainers; [ marsam ];
};
}

View File

@ -8621,6 +8621,8 @@ with pkgs;
mktorrent = callPackage ../tools/misc/mktorrent { };
mloader = callPackage ../tools/misc/mloader { };
mmake = callPackage ../tools/misc/mmake { };
mmixware = callPackage ../development/tools/mmixware { };