nixpkgs/pkgs/applications/graphics/dosage/default.nix

29 lines
747 B
Nix
Raw Normal View History

2018-08-05 14:33:00 +00:00
{ stdenv, pythonPackages, fetchFromGitHub }:
pythonPackages.buildPythonApplication rec {
pname = "dosage";
version = "2018.04.08";
PBR_VERSION = version;
src = fetchFromGitHub {
owner = "webcomics";
repo = "dosage";
rev = "b2fdc13feb65b93762928f7e99bac7b1b7b31591";
sha256 = "1p6vllqaf9s6crj47xqp97hkglch1kd4y8y4lxvzx3g2shhhk9hh";
};
2019-02-14 19:28:42 +00:00
checkInputs = with pythonPackages; [ pytest responses ];
propagatedBuildInputs = with pythonPackages; [ colorama lxml requests pbr ];
disabled = pythonPackages.pythonOlder "3.3";
2018-04-13 21:25:59 +00:00
checkPhase = ''
py.test tests/
'';
meta = {
description = "A comic strip downloader and archiver";
2018-05-01 03:03:23 +00:00
homepage = https://dosage.rocks/;
2018-08-05 14:33:00 +00:00
license = stdenv.lib.licenses.mit;
};
}