add setuptools-scm dep back
This commit is contained in:
parent
b516be4535
commit
c396dbf91e
1 changed files with 8 additions and 8 deletions
16
flake.nix
16
flake.nix
|
@ -24,18 +24,17 @@
|
||||||
projectDir = ./.;
|
projectDir = ./.;
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
pkgs.openssh
|
pkgs.openssh
|
||||||
|
pkgs.sshpass
|
||||||
];
|
];
|
||||||
overrides = pkgs.poetry2nix.overrides.withDefaults
|
overrides = pkgs.poetry2nix.overrides.withDefaults
|
||||||
(
|
(
|
||||||
# self: super: {
|
|
||||||
# pynetbox = super.pynetbox.overridePythonAttrs
|
|
||||||
# (
|
|
||||||
# old: {
|
|
||||||
# propagatedBuildInputs = [ super.setuptools-scm ] ++ super.pynetbox.propagatedBuildInputs;
|
|
||||||
# }
|
|
||||||
# );
|
|
||||||
# }
|
|
||||||
self: super: {
|
self: super: {
|
||||||
|
pynetbox = super.pynetbox.overridePythonAttrs
|
||||||
|
(
|
||||||
|
old: {
|
||||||
|
propagatedBuildInputs = [ super.setuptools-scm ] ++ super.pynetbox.propagatedBuildInputs;
|
||||||
|
}
|
||||||
|
);
|
||||||
pathspec = super.pathspec.overridePythonAttrs
|
pathspec = super.pathspec.overridePythonAttrs
|
||||||
(
|
(
|
||||||
old: {
|
old: {
|
||||||
|
@ -58,6 +57,7 @@
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
python
|
python
|
||||||
pkgs.openssh
|
pkgs.openssh
|
||||||
|
pkgs.sshpass
|
||||||
pkgs.poetry
|
pkgs.poetry
|
||||||
];
|
];
|
||||||
shellHook = ''
|
shellHook = ''
|
||||||
|
|
Loading…
Reference in a new issue