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