nixpkgs/pkgs/tools/misc/sacad/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
791 B
Nix
Raw Normal View History

{ lib, python3Packages, fetchPypi, jpegoptim, optipng }:
2021-02-28 07:33:50 +00:00
python3Packages.buildPythonApplication rec {
pname = "sacad";
2024-08-07 13:10:25 +00:00
version = "2.8.0";
2021-02-28 07:33:50 +00:00
src = fetchPypi {
2021-02-28 07:33:50 +00:00
inherit pname version;
2024-08-07 13:10:25 +00:00
hash = "sha256-/NyRnQSqDZv+LJ1bPO35T9icQ2PN9Oa+nSmrLkQimnQ=";
2021-02-28 07:33:50 +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;
2023-11-17 10:03:27 +00:00
maintainers = with maintainers; [ moni ];
2021-02-28 07:33:50 +00:00
};
}