mirror of
https://github.com/vale981/website
synced 2025-03-04 09:01:41 -05:00
fix typo
This commit is contained in:
parent
e6058f7a07
commit
496d755ddc
2 changed files with 4 additions and 8 deletions
|
@ -2942,12 +2942,10 @@ project in full nix using [[https://github.com/nix-community/poetry2nix][poetry2
|
|||
|
||||
# this enables interactive plotting support with GTK
|
||||
overrides = poetry2nix.overrides.withDefaults (final: prev: {
|
||||
matplotlib = with pkgs; prev.matplotlib.overridePythonAttrs (
|
||||
old:
|
||||
matplotlib = with pkgs; prev.matplotlib.override
|
||||
{
|
||||
passthru.args.enableGtk3 = true;
|
||||
}
|
||||
);
|
||||
};
|
||||
});
|
||||
};
|
||||
default = self.packages.${system}.yourPackage;
|
||||
|
|
|
@ -46,12 +46,10 @@ project in full nix using [poetry2nix](https://github.com/nix-community/poetry2n
|
|||
|
||||
# this enables interactive plotting support with GTK
|
||||
overrides = poetry2nix.overrides.withDefaults (final: prev: {
|
||||
matplotlib = with pkgs; prev.matplotlib.overridePythonAttrs (
|
||||
old:
|
||||
matplotlib = with pkgs; prev.matplotlib.override
|
||||
{
|
||||
passthru.args.enableGtk3 = true;
|
||||
}
|
||||
);
|
||||
};
|
||||
});
|
||||
};
|
||||
default = self.packages.${system}.yourPackage;
|
||||
|
|
Loading…
Add table
Reference in a new issue