breezy: add github support

Breezy offers Github support as a `forge` which is used by
[`silver-platter`](https://github.com/jelmer/silver-platter), which I'm
currently importing into nixpkgs.
This commit is contained in:
Luke Granger-Brown
2023-09-23 15:39:02 +00:00
parent 79e43fbfbc
commit 3ed419cd2f
@@ -8,6 +8,7 @@
, dulwich
, fastbencode
, fastimport
, pygithub
, libiconv
, merge3
, patiencediff
@@ -66,7 +67,8 @@ buildPythonPackage rec {
pyyaml
urllib3
] ++ passthru.optional-dependencies.launchpad
++ passthru.optional-dependencies.fastimport;
++ passthru.optional-dependencies.fastimport
++ passthru.optional-dependencies.github;
nativeCheckInputs = [
testtools
@@ -109,6 +111,9 @@ buildPythonPackage rec {
fastimport = [
fastimport
];
github = [
pygithub
];
};
};