Files
nixpkgs/pkgs/development/python-modules/bugwarrior/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

69 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pythonOlder,
setuptools,
twiggy,
requests,
offtrac,
python-bugzilla,
taskw,
python-dateutil,
pytz,
keyring,
six,
jinja2,
pycurl,
dogpile-cache,
lockfile,
click,
pyxdg,
future,
jira,
}:
buildPythonPackage rec {
pname = "bugwarrior";
version = "1.8.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "f024c29d2089b826f05481cace33a62aa984f33e98d226f6e41897e6f11b3f51";
};
propagatedBuildInputs = [
setuptools
twiggy
requests
offtrac
python-bugzilla
taskw
python-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 = {
homepage = "https://github.com/GothenburgBitFactory/bugwarrior";
description = "Sync github, bitbucket, bugzilla, and trac issues with taskwarrior";
license = lib.licenses.gpl3Plus;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ pierron ];
};
}