Files
nixpkgs/pkgs/development/python-modules/bugwarrior/default.nix
T

32 lines
1.0 KiB
Nix
Raw Normal View History

{ lib, stdenv, buildPythonPackage, fetchPypi, pythonOlder, setuptools
2018-03-31 17:23:11 +02:00
, twiggy, requests, offtrac, bugzilla, taskw, dateutil, pytz, keyring, six
, jinja2, pycurl, dogpile_cache, lockfile, click, pyxdg, future, jira }:
2018-03-31 17:23:11 +02:00
buildPythonPackage rec {
pname = "bugwarrior";
2020-12-14 08:44:06 +00:00
version = "1.8.0";
disabled = pythonOlder "3.6";
2018-03-31 17:23:11 +02:00
src = fetchPypi {
inherit pname version;
2020-12-14 08:44:06 +00:00
sha256 = "f024c29d2089b826f05481cace33a62aa984f33e98d226f6e41897e6f11b3f51";
2018-03-31 17:23:11 +02:00
};
propagatedBuildInputs = [
setuptools
2018-03-31 17:23:11 +02:00
twiggy requests offtrac bugzilla taskw dateutil pytz keyring six
jinja2 pycurl dogpile_cache lockfile click pyxdg future jira
2018-03-31 17:23:11 +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 lib; {
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;
maintainers = with maintainers; [ pierron yurrriq ];
2018-03-31 17:23:11 +02:00
};
}