mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-05 09:11:39 -05:00
Merge pull request #267 from cyraxjoe/extra-overrides
Add additional overrides for jaraco-functools, portend and tempora.
This commit is contained in:
commit
c6f3561833
1 changed files with 15 additions and 3 deletions
|
@ -369,9 +369,13 @@ self: super:
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
# disable the removal of pyproject.toml, required because of setuptools_scm
|
|
||||||
jaraco-functools = super.jaraco-functools.overridePythonAttrs (
|
jaraco-functools = super.jaraco-functools.overridePythonAttrs (
|
||||||
old: {
|
old: {
|
||||||
|
# required for the extra "toml" dependency in setuptools_scm[toml]
|
||||||
|
buildInputs = (old.buildInputs or [ ]) ++ [
|
||||||
|
self.toml
|
||||||
|
];
|
||||||
|
# disable the removal of pyproject.toml, required because of setuptools_scm
|
||||||
dontPreferSetupPy = true;
|
dontPreferSetupPy = true;
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
@ -764,9 +768,13 @@ self: super:
|
||||||
'';
|
'';
|
||||||
});
|
});
|
||||||
|
|
||||||
# disable the removal of pyproject.toml, required because of setuptools_scm
|
|
||||||
portend = super.portend.overridePythonAttrs (
|
portend = super.portend.overridePythonAttrs (
|
||||||
old: {
|
old: {
|
||||||
|
# required for the extra "toml" dependency in setuptools_scm[toml]
|
||||||
|
buildInputs = (old.buildInputs or [ ]) ++ [
|
||||||
|
self.toml
|
||||||
|
];
|
||||||
|
# disable the removal of pyproject.toml, required because of setuptools_scm
|
||||||
dontPreferSetupPy = true;
|
dontPreferSetupPy = true;
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
@ -1278,9 +1286,13 @@ self: super:
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
# disable the removal of pyproject.toml, required because of setuptools_scm
|
|
||||||
tempora = super.tempora.overridePythonAttrs (
|
tempora = super.tempora.overridePythonAttrs (
|
||||||
old: {
|
old: {
|
||||||
|
# required for the extra "toml" dependency in setuptools_scm[toml]
|
||||||
|
buildInputs = (old.buildInputs or [ ]) ++ [
|
||||||
|
self.toml
|
||||||
|
];
|
||||||
|
# disable the removal of pyproject.toml, required because of setuptools_scm
|
||||||
dontPreferSetupPy = true;
|
dontPreferSetupPy = true;
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Reference in a new issue