Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 31 lines 1.0 kB view raw
1{ stdenv, buildPythonPackage, fetchPypi 2, mock, unittest2, nose 3, twiggy, requests, offtrac, bugzilla, taskw, dateutil, pytz, keyring, six 4, jinja2, pycurl, dogpile_cache, lockfile, click, pyxdg, future }: 5 6buildPythonPackage rec { 7 pname = "bugwarrior"; 8 version = "1.7.0"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "1pmznka5dxcdjfak0p1yh7lhfbfazmx8g9ysv57lsrkqy4n61qks"; 13 }; 14 15 buildInputs = [ mock unittest2 nose /* jira megaplan */ ]; 16 propagatedBuildInputs = [ 17 twiggy requests offtrac bugzilla taskw dateutil pytz keyring six 18 jinja2 pycurl dogpile_cache lockfile click pyxdg future 19 ]; 20 21 # for the moment jira>=0.22 and megaplan>=1.4 are missing for running the test suite. 22 doCheck = false; 23 24 meta = with stdenv.lib; { 25 homepage = https://github.com/ralphbean/bugwarrior; 26 description = "Sync github, bitbucket, bugzilla, and trac issues with taskwarrior"; 27 license = licenses.gpl3Plus; 28 platforms = platforms.all; 29 maintainers = with maintainers; [ pierron ]; 30 }; 31}