mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-04 16:51:40 -05:00
build-systems: add setuptools to tbats
This commit is contained in:
parent
0b059b6712
commit
50ecb0b0c9
2 changed files with 5 additions and 2 deletions
|
@ -16070,6 +16070,9 @@
|
|||
"taxi": [
|
||||
"setuptools"
|
||||
],
|
||||
"tbats": [
|
||||
"setuptools"
|
||||
],
|
||||
"tblib": [
|
||||
"setuptools"
|
||||
],
|
||||
|
|
|
@ -317,7 +317,7 @@ lib.composeManyExtensions [
|
|||
--replace 'cmd = [make]' \
|
||||
'cmd = ["${pkgs.cmdstan}/bin/stan"]'
|
||||
'';
|
||||
CMDSTAN="${pkgs.cmdstan}";
|
||||
CMDSTAN = "${pkgs.cmdstan}";
|
||||
}
|
||||
);
|
||||
|
||||
|
@ -1523,7 +1523,7 @@ lib.composeManyExtensions [
|
|||
prophet = super.prophet.overridePythonAttrs (old: {
|
||||
propagatedBuildInputs = (old.propagatedBuildInputs or [ ]) ++ [ pkgs.cmdstan self.cmdstanpy ];
|
||||
PROPHET_REPACKAGE_CMDSTAN = "false";
|
||||
CMDSTAN="${pkgs.cmdstan}";
|
||||
CMDSTAN = "${pkgs.cmdstan}";
|
||||
});
|
||||
|
||||
psycopg2 = super.psycopg2.overridePythonAttrs (
|
||||
|
|
Loading…
Add table
Reference in a new issue