From 3ed419cd2f01117facf2b97c5fba31e55511b781 Mon Sep 17 00:00:00 2001 From: Luke Granger-Brown Date: Sat, 23 Sep 2023 15:39:02 +0000 Subject: [PATCH] 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. --- pkgs/development/python-modules/breezy/default.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/breezy/default.nix b/pkgs/development/python-modules/breezy/default.nix index 5fb4dd913e60..c7e938465507 100644 --- a/pkgs/development/python-modules/breezy/default.nix +++ b/pkgs/development/python-modules/breezy/default.nix @@ -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 + ]; }; };