Add three overrides to make sure the pyproject.toml is not removed.

Overrides: jaraco-functools, portend and tempora.
This commit is contained in:
Joel Rivera 2020-08-19 22:59:13 -05:00
parent ca3784972f
commit a63a715267

View file

@ -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 ( jsonpickle = super.jsonpickle.overridePythonAttrs (
old: { old: {
dontPreferSetupPy = true; 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 ( psycopg2 = super.psycopg2.overridePythonAttrs (
old: { old: {
buildInputs = old.buildInputs 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 ( tensorflow = super.tensorflow.overridePythonAttrs (
old: { old: {
postInstall = '' postInstall = ''