2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, pythonOlder, setuptools
|
2018-03-31 16:23:11 +01:00
|
|
|
, twiggy, requests, offtrac, bugzilla, taskw, dateutil, pytz, keyring, six
|
2019-08-06 22:48:16 +01:00
|
|
|
, jinja2, pycurl, dogpile_cache, lockfile, click, pyxdg, future, jira }:
|
2018-03-31 16:23:11 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "bugwarrior";
|
2020-12-14 08:44:06 +00:00
|
|
|
version = "1.8.0";
|
2019-08-06 22:48:16 +01:00
|
|
|
disabled = pythonOlder "3.6";
|
2018-03-31 16:23:11 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-12-14 08:44:06 +00:00
|
|
|
sha256 = "f024c29d2089b826f05481cace33a62aa984f33e98d226f6e41897e6f11b3f51";
|
2018-03-31 16:23:11 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
2019-08-06 22:48:16 +01:00
|
|
|
setuptools
|
2018-03-31 16:23:11 +01:00
|
|
|
twiggy requests offtrac bugzilla taskw dateutil pytz keyring six
|
2019-08-06 22:48:16 +01:00
|
|
|
jinja2 pycurl dogpile_cache lockfile click pyxdg future jira
|
2018-03-31 16:23:11 +01:00
|
|
|
];
|
|
|
|
|
2019-08-06 22:48:16 +01:00
|
|
|
# for the moment oauth2client <4.0.0 and megaplan>=1.4 are missing for running the test suite.
|
2018-03-31 16:23:11 +01:00
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/ralphbean/bugwarrior";
|
2018-03-31 16:23:11 +01:00
|
|
|
description = "Sync github, bitbucket, bugzilla, and trac issues with taskwarrior";
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.all;
|
2019-08-06 22:48:16 +01:00
|
|
|
maintainers = with maintainers; [ pierron yurrriq ];
|
2018-03-31 16:23:11 +01:00
|
|
|
};
|
|
|
|
}
|