Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / bugwarrior / default.nix
blob3e66455de7b502819608ef77cb0813dc2ca19663
1 { lib, buildPythonPackage, fetchPypi, pythonOlder, setuptools
2 , twiggy, requests, offtrac, bugzilla, taskw, python-dateutil, pytz, keyring, six
3 , jinja2, pycurl, dogpile-cache, lockfile, click, pyxdg, future, jira }:
5 buildPythonPackage rec {
6   pname = "bugwarrior";
7   version = "1.8.0";
8   format = "setuptools";
9   disabled = pythonOlder "3.6";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "f024c29d2089b826f05481cace33a62aa984f33e98d226f6e41897e6f11b3f51";
14   };
16   propagatedBuildInputs = [
17     setuptools
18     twiggy requests offtrac bugzilla taskw python-dateutil pytz keyring six
19     jinja2 pycurl dogpile-cache lockfile click pyxdg future jira
20   ];
22   # for the moment oauth2client <4.0.0 and megaplan>=1.4 are missing for running the test suite.
23   doCheck = false;
25   meta = with lib; {
26     homepage = "https://github.com/GothenburgBitFactory/bugwarrior";
27     description = "Sync github, bitbucket, bugzilla, and trac issues with taskwarrior";
28     license = licenses.gpl3Plus;
29     platforms = platforms.all;
30     maintainers = with maintainers; [ pierron ];
31   };