4c654ddbc0
* dosage: 2018.04.08 -> 2.17 I've assumed maintainership of the expression because there was none. Using `fetchPypi` rather than `fetchFromGithub` because the Github tarballs don't contain all the metadata necessary for the installation. * dosage: Use pytestCheckHook rather than py.test * dosage: Re-add test dependencies * dosage: Add setuptools_scm build input * dosage: Add six dependency
31 lines
762 B
Nix
31 lines
762 B
Nix
{ lib, python3Packages }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "dosage";
|
|
version = "2.17";
|
|
|
|
src = python3Packages.fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0vmxgn9wd3j80hp4gr5iq06jrl4gryz5zgfdd2ah30d12sfcfig0";
|
|
};
|
|
|
|
checkInputs = with python3Packages; [
|
|
pytestCheckHook pytest-xdist responses
|
|
];
|
|
|
|
nativeBuildInputs = with python3Packages; [ setuptools-scm ];
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
colorama imagesize lxml requests setuptools six
|
|
];
|
|
|
|
disabled = python3Packages.pythonOlder "3.3";
|
|
|
|
meta = {
|
|
description = "A comic strip downloader and archiver";
|
|
homepage = "https://dosage.rocks/";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ toonn ];
|
|
};
|
|
}
|