5e7c2d6cef
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
65 lines
1.1 KiB
Nix
65 lines
1.1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, poetry-core
|
|
, beautifulsoup4
|
|
, comicon
|
|
, feedparser
|
|
, filetype
|
|
, lxml
|
|
, natsort
|
|
, pillow
|
|
, python-slugify
|
|
, requests
|
|
, typer
|
|
, pyside6
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mandown";
|
|
version = "1.5.0";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "potatoeggy";
|
|
repo = "mandown";
|
|
rev = "v${version}";
|
|
hash = "sha256-ph+1bb1jhqqDE2d4F8lTf7LAzN7DWpDTGn8qhCiccKA=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
beautifulsoup4
|
|
comicon
|
|
feedparser
|
|
filetype
|
|
lxml
|
|
natsort
|
|
pillow
|
|
python-slugify
|
|
requests
|
|
typer
|
|
];
|
|
|
|
passthru.optional-dependencies = {
|
|
gui = [
|
|
pyside6
|
|
];
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml --replace 'typer = "^0.7.0"' 'typer = "^0"'
|
|
'';
|
|
|
|
pythonImportsCheck = [ "mandown" ];
|
|
|
|
meta = with lib; {
|
|
description = "Comic/manga/webtoon downloader and CBZ/EPUB/MOBI/PDF converter";
|
|
homepage = "https://github.com/potatoeggy/mandown";
|
|
license = licenses.agpl3Only;
|
|
maintainers = with maintainers; [ Scrumplex ];
|
|
};
|
|
}
|