2023-11-05 17:17:15 +00:00
|
|
|
{
|
|
|
|
description = "A comic strip downloader and archiver (unstable)";
|
|
|
|
|
|
|
|
inputs = {
|
|
|
|
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.1.0.tar.gz";
|
2023-11-05 17:24:01 +00:00
|
|
|
flake-utils.url = "https://flakehub.com/f/numtide/flake-utils/0.1.85.tar.gz";
|
2023-11-05 17:17:15 +00:00
|
|
|
};
|
|
|
|
|
2023-11-05 17:24:01 +00:00
|
|
|
outputs = {
|
|
|
|
self,
|
|
|
|
nixpkgs,
|
|
|
|
flake-utils,
|
|
|
|
...
|
|
|
|
}: let
|
|
|
|
pythonVersion = "python39";
|
|
|
|
in
|
|
|
|
flake-utils.lib.eachDefaultSystem (system: let
|
|
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
|
|
lib = pkgs.lib;
|
|
|
|
python3Packages = pkgs.python3Packages;
|
|
|
|
fetchPypi = pkgs.fetchPypi;
|
|
|
|
in rec {
|
|
|
|
defaultPackage = python3Packages.buildPythonApplication rec {
|
|
|
|
pname = "dosage";
|
|
|
|
version = "3.1.dev104+g9e05fae304";
|
|
|
|
format = "pyproject";
|
|
|
|
|
2023-11-05 19:10:27 +00:00
|
|
|
src = builtins.fetchGit {
|
|
|
|
url = "https://src.mfgames.com/dmoonfire/dosage.git";
|
|
|
|
ref = "main";
|
|
|
|
rev = "89afdb37d74c64569e60c11ac2a9fdbb8a1fc0ff";
|
|
|
|
};
|
|
|
|
|
2023-11-05 17:24:01 +00:00
|
|
|
nativeCheckInputs = with python3Packages; [
|
|
|
|
pytestCheckHook
|
|
|
|
pytest-xdist
|
|
|
|
responses
|
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = with python3Packages; [setuptools-scm];
|
|
|
|
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
|
|
colorama
|
|
|
|
imagesize
|
|
|
|
lxml
|
|
|
|
platformdirs
|
|
|
|
requests
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A comic strip downloader and archiver";
|
|
|
|
homepage = "https://dosage.rocks/";
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
maintainers = with lib.maintainers; [dmoonfire];
|
2023-11-05 17:17:15 +00:00
|
|
|
};
|
2023-11-05 17:24:01 +00:00
|
|
|
};
|
2023-11-05 17:17:15 +00:00
|
|
|
|
2023-11-05 17:24:01 +00:00
|
|
|
formatter = pkgs.alejandra;
|
|
|
|
});
|
2023-11-05 17:17:15 +00:00
|
|
|
}
|