2021-08-21 14:04:25 +01:00
|
|
|
{ lib, python3Packages }:
|
2018-04-13 21:10:21 +01:00
|
|
|
|
2019-11-13 14:40:13 +00:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2018-04-13 21:10:21 +01:00
|
|
|
pname = "dosage";
|
2021-08-21 14:04:25 +01:00
|
|
|
version = "2.17";
|
2018-04-13 21:10:21 +01:00
|
|
|
|
2021-08-21 14:04:25 +01:00
|
|
|
src = python3Packages.fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "0vmxgn9wd3j80hp4gr5iq06jrl4gryz5zgfdd2ah30d12sfcfig0";
|
2018-04-13 21:10:21 +01:00
|
|
|
};
|
|
|
|
|
2021-08-21 14:04:25 +01:00
|
|
|
checkInputs = with python3Packages; [
|
|
|
|
pytestCheckHook pytest-xdist responses
|
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = with python3Packages; [ setuptools-scm ];
|
2018-04-13 21:10:21 +01:00
|
|
|
|
2021-08-21 14:04:25 +01:00
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
|
|
colorama imagesize lxml requests setuptools six
|
|
|
|
];
|
|
|
|
|
|
|
|
disabled = python3Packages.pythonOlder "3.3";
|
2018-04-13 22:25:59 +01:00
|
|
|
|
2018-04-13 21:10:21 +01:00
|
|
|
meta = {
|
|
|
|
description = "A comic strip downloader and archiver";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://dosage.rocks/";
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.mit;
|
2021-08-21 14:04:25 +01:00
|
|
|
maintainers = with lib.maintainers; [ toonn ];
|
2018-04-13 21:10:21 +01:00
|
|
|
};
|
|
|
|
}
|