mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
29 lines
763 B
Nix
29 lines
763 B
Nix
{ stdenv, python3Packages, fetchFromGitHub }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "dosage";
|
|
version = "2018.04.08";
|
|
PBR_VERSION = version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "webcomics";
|
|
repo = "dosage";
|
|
rev = "b2fdc13feb65b93762928f7e99bac7b1b7b31591";
|
|
sha256 = "1p6vllqaf9s6crj47xqp97hkglch1kd4y8y4lxvzx3g2shhhk9hh";
|
|
};
|
|
checkInputs = with python3Packages; [ pytest responses ];
|
|
propagatedBuildInputs = with python3Packages; [ colorama lxml requests pbr setuptools ];
|
|
|
|
disabled = python3Packages.pythonOlder "3.3";
|
|
|
|
checkPhase = ''
|
|
py.test tests/
|
|
'';
|
|
|
|
meta = {
|
|
description = "A comic strip downloader and archiver";
|
|
homepage = https://dosage.rocks/;
|
|
license = stdenv.lib.licenses.mit;
|
|
};
|
|
}
|