mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-06 17:51:40 -05:00
Fix dbt-extractor and minimal-snowplow-tracker (#1037)
This commit is contained in:
parent
cb66d75f29
commit
eec50cddd7
1 changed files with 14 additions and 0 deletions
|
@ -444,6 +444,13 @@ lib.composeManyExtensions [
|
||||||
buildInputs = (old.buildInputs or [ ]) ++ [ self.setuptools ];
|
buildInputs = (old.buildInputs or [ ]) ++ [ self.setuptools ];
|
||||||
});
|
});
|
||||||
|
|
||||||
|
dbt-extractor = super.dbt-extractor.overridePythonAttrs
|
||||||
|
(
|
||||||
|
old: {
|
||||||
|
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ pkgs.cargo pkgs.rustc pkgs.maturin ];
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
dbus-python = super.dbus-python.overridePythonAttrs (old: {
|
dbus-python = super.dbus-python.overridePythonAttrs (old: {
|
||||||
outputs = [ "out" "dev" ];
|
outputs = [ "out" "dev" ];
|
||||||
|
|
||||||
|
@ -2705,6 +2712,13 @@ lib.composeManyExtensions [
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
minimal-snowplow-tracker = super.minimal-snowplow-tracker.overridePythonAttrs
|
||||||
|
(
|
||||||
|
old: {
|
||||||
|
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ super.setuptools ];
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
# nixpkgs has setuptools_scm 4.1.2
|
# nixpkgs has setuptools_scm 4.1.2
|
||||||
# but newrelic has a seemingly unnecessary version constraint for <4
|
# but newrelic has a seemingly unnecessary version constraint for <4
|
||||||
# So we patch that out
|
# So we patch that out
|
||||||
|
|
Loading…
Add table
Reference in a new issue