2023-07-15 17:15:38 +00:00
|
|
|
{ lib, python3Packages, fetchPypi, jpegoptim, optipng }:
|
2021-03-09 03:18:52 +00:00
|
|
|
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
|
|
pname = "sacad";
|
2024-09-19 14:19:46 +00:00
|
|
|
version = "2.8.0";
|
2021-03-09 03:18:52 +00:00
|
|
|
|
2023-07-15 17:15:38 +00:00
|
|
|
src = fetchPypi {
|
2021-03-09 03:18:52 +00:00
|
|
|
inherit pname version;
|
2024-09-19 14:19:46 +00:00
|
|
|
hash = "sha256-/NyRnQSqDZv+LJ1bPO35T9icQ2PN9Oa+nSmrLkQimnQ=";
|
2021-03-09 03:18:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
|
|
aiohttp
|
|
|
|
appdirs
|
|
|
|
bitarray
|
|
|
|
cssselect
|
|
|
|
fake-useragent
|
|
|
|
lxml
|
|
|
|
mutagen
|
|
|
|
pillow
|
|
|
|
tqdm
|
|
|
|
unidecode
|
|
|
|
web-cache
|
|
|
|
jpegoptim
|
|
|
|
optipng
|
|
|
|
];
|
|
|
|
|
|
|
|
# tests require internet connection
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "sacad" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Smart Automatic Cover Art Downloader";
|
|
|
|
homepage = "https://github.com/desbma/sacad";
|
|
|
|
license = licenses.mpl20;
|
2024-01-02 11:29:13 +00:00
|
|
|
maintainers = with maintainers; [ moni ];
|
2021-03-09 03:18:52 +00:00
|
|
|
};
|
|
|
|
}
|