From c396dbf91e28cd65f04457661111ebc08a0c30ae Mon Sep 17 00:00:00 2001 From: "Jeffrey C. Ollie" Date: Fri, 24 Mar 2023 10:47:06 -0500 Subject: [PATCH] add setuptools-scm dep back --- flake.nix | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/flake.nix b/flake.nix index 640b71f..80acb13 100644 --- a/flake.nix +++ b/flake.nix @@ -24,18 +24,17 @@ projectDir = ./.; propagatedBuildInputs = [ pkgs.openssh + pkgs.sshpass ]; overrides = pkgs.poetry2nix.overrides.withDefaults ( - # self: super: { - # pynetbox = super.pynetbox.overridePythonAttrs - # ( - # old: { - # propagatedBuildInputs = [ super.setuptools-scm ] ++ super.pynetbox.propagatedBuildInputs; - # } - # ); - # } self: super: { + pynetbox = super.pynetbox.overridePythonAttrs + ( + old: { + propagatedBuildInputs = [ super.setuptools-scm ] ++ super.pynetbox.propagatedBuildInputs; + } + ); pathspec = super.pathspec.overridePythonAttrs ( old: { @@ -58,6 +57,7 @@ buildInputs = [ python pkgs.openssh + pkgs.sshpass pkgs.poetry ]; shellHook = ''