about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJulien Moutinho <julm+nixpkgs@sourcephile.fr>2022-11-01 18:57:04 +0100
committerWinter <winter@winter.cafe>2022-11-01 21:56:37 -0400
commit608eb68fd8ab9e50186ffc3d7c7e842618037c2b (patch)
treedd80d79fff1687f0b9a61a5609eb9c5365654c89 /pkgs
parente1930cf933f306cad0611998c78671f7fe0f41ab (diff)
sourcehut.hubsrht: fix missing pyyaml dependency
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/version-management/sourcehut/hub.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/applications/version-management/sourcehut/hub.nix b/pkgs/applications/version-management/sourcehut/hub.nix
index 6692cf60abaf8..c3a9c509f8934 100644
--- a/pkgs/applications/version-management/sourcehut/hub.nix
+++ b/pkgs/applications/version-management/sourcehut/hub.nix
@@ -2,6 +2,7 @@
 , fetchFromSourcehut
 , buildPythonPackage
 , srht
+, pyyaml
 }:
 
 buildPythonPackage rec {
@@ -17,6 +18,7 @@ buildPythonPackage rec {
 
   propagatedBuildInputs = [
     srht
+    pyyaml
   ];
 
   preBuild = ''