mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
32 lines
1 KiB
Nix
32 lines
1 KiB
Nix
{ stdenv, buildPythonPackage, fetchPypi, pythonOlder, setuptools
|
|
, twiggy, requests, offtrac, bugzilla, taskw, dateutil, pytz, keyring, six
|
|
, jinja2, pycurl, dogpile_cache, lockfile, click, pyxdg, future, jira }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "bugwarrior";
|
|
version = "1.7.0";
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1pmznka5dxcdjfak0p1yh7lhfbfazmx8g9ysv57lsrkqy4n61qks";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
setuptools
|
|
twiggy requests offtrac bugzilla taskw dateutil pytz keyring six
|
|
jinja2 pycurl dogpile_cache lockfile click pyxdg future jira
|
|
];
|
|
|
|
# for the moment oauth2client <4.0.0 and megaplan>=1.4 are missing for running the test suite.
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://github.com/ralphbean/bugwarrior";
|
|
description = "Sync github, bitbucket, bugzilla, and trac issues with taskwarrior";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ pierron yurrriq ];
|
|
};
|
|
}
|