36 lines
803 B
Nix
36 lines
803 B
Nix
{ lib, python3Packages }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "mloader";
|
|
version = "1.1.9";
|
|
format = "setuptools";
|
|
|
|
src = python3Packages.fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "81e4dc7117999d502e3345f8e32df8b16cca226b8b508976dde2de81a4cc2b19";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace "protobuf~=3.6" "protobuf"
|
|
'';
|
|
|
|
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 ];
|
|
};
|
|
}
|