bugwarrior: add bugwarrior

This commit is contained in:
Ingolf Wagner 2019-12-27 13:10:49 +13:00
commit 1a9b49087b
No known key found for this signature in database
GPG key ID: 76BF5F1928B9618B
2 changed files with 43 additions and 22 deletions
modules/programs

View file

@ -36,8 +36,18 @@ in {
python # needed for hooks
# funktioiert irgendwie nicht
# python3Packages.bugwarrior
# bugwarrior
(let
mypython = let
packageOverrides = self: super: {
bugwarrior = super.bugwarrior.overridePythonAttrs (old: {
propagatedBuildInputs = old.propagatedBuildInputs
++ [ super.setuptools ];
});
};
in pkgs.python3.override { inherit packageOverrides; };
in mypython.pkgs.bugwarrior)
];
};