mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-05 17:21:39 -05:00
Add three overrides to make sure the pyproject.toml is not removed.
Overrides: jaraco-functools, portend and tempora.
This commit is contained in:
parent
ca3784972f
commit
a63a715267
1 changed files with 21 additions and 0 deletions
|
@ -316,6 +316,13 @@ self: super:
|
|||
}
|
||||
);
|
||||
|
||||
# disable the removal of pyproject.toml, required because of setuptools_scm
|
||||
jaraco-functools = super.jaraco-functools.overridePythonAttrs (
|
||||
old: {
|
||||
dontPreferSetupPy = true;
|
||||
}
|
||||
);
|
||||
|
||||
jsonpickle = super.jsonpickle.overridePythonAttrs (
|
||||
old: {
|
||||
dontPreferSetupPy = true;
|
||||
|
@ -576,6 +583,13 @@ self: super:
|
|||
}
|
||||
);
|
||||
|
||||
# disable the removal of pyproject.toml, required because of setuptools_scm
|
||||
portend = super.portend.overridePythonAttrs (
|
||||
old: {
|
||||
dontPreferSetupPy = true;
|
||||
}
|
||||
);
|
||||
|
||||
psycopg2 = super.psycopg2.overridePythonAttrs (
|
||||
old: {
|
||||
buildInputs = old.buildInputs
|
||||
|
@ -1009,6 +1023,13 @@ self: super:
|
|||
}
|
||||
);
|
||||
|
||||
# disable the removal of pyproject.toml, required because of setuptools_scm
|
||||
tempora = super.tempora.overridePythonAttrs (
|
||||
old: {
|
||||
dontPreferSetupPy = true;
|
||||
}
|
||||
);
|
||||
|
||||
tensorflow = super.tensorflow.overridePythonAttrs (
|
||||
old: {
|
||||
postInstall = ''
|
||||
|
|
Loading…
Add table
Reference in a new issue