about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/bugwarrior/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/bugwarrior/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/bugwarrior/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/bugwarrior/default.nix b/nixpkgs/pkgs/development/python-modules/bugwarrior/default.nix
new file mode 100644
index 000000000000..3d27384efe18
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/bugwarrior/default.nix
@@ -0,0 +1,31 @@
+{ lib, 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.8.0";
+  disabled = pythonOlder "3.6";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "f024c29d2089b826f05481cace33a62aa984f33e98d226f6e41897e6f11b3f51";
+  };
+
+  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 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 ];
+  };
+}