Commit 3ed419cd authored by Luke Granger-Brown's avatar Luke Granger-Brown
Browse files

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.
parent 79e43fbf
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -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
      ];
    };
  };