add setuptools-scm dep back

This commit is contained in:
Jeffrey C. Ollie 2023-03-24 10:47:06 -05:00
parent b516be4535
commit c396dbf91e
No known key found for this signature in database
GPG key ID: F936E4DCB7E25F15

View file

@ -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 = ''