mloader: init at 1.1.8

This commit is contained in:
Mario Rodas
2022-07-16 04:20:00 +00:00
parent 2e3f6efded
commit 64b01772cb
2 changed files with 34 additions and 0 deletions
+32
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 ];
};
}
+2
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 { };