mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-05 09:11:39 -05:00
Merge pull request #142 from mjlbach/overrides-add-vispy
Add override for vispy
This commit is contained in:
commit
d0f730fd6f
1 changed files with 10 additions and 0 deletions
|
@ -918,6 +918,16 @@ self: super:
|
|||
}
|
||||
);
|
||||
|
||||
vispy = super.vispy.overrideAttrs (
|
||||
old: {
|
||||
inherit (pkgs.python3.pkgs.vispy) patches;
|
||||
nativeBuildInputs = old.nativeBuildInputs ++ [
|
||||
self.cython
|
||||
self.setuptools-scm-git-archive
|
||||
];
|
||||
}
|
||||
);
|
||||
|
||||
uvloop = super.uvloop.overridePythonAttrs (
|
||||
old: {
|
||||
buildInputs = old.buildInputs ++ lib.optionals stdenv.isDarwin [
|
||||
|
|
Loading…
Add table
Reference in a new issue