python310Packages.schema: don't depend on contextlib2

This commit is contained in:
Robert Schütz 2023-02-04 23:09:35 -08:00
parent 7590fa36d8
commit feb549ff50

View File

@ -1,10 +1,10 @@
{ lib
, buildPythonPackage
, contextlib2
, fetchPypi
, mock
, pytestCheckHook
, pythonOlder
, pythonRelaxDepsHook
}:
buildPythonPackage rec {
@ -19,8 +19,12 @@ buildPythonPackage rec {
hash = "sha256-8GcXESxhiVyrxHB3UriHFuhCCogZ1xQEUB4RT5EEMZc=";
};
propagatedBuildInputs = [
contextlib2
nativeBuildInputs = [
pythonRelaxDepsHook
];
pythonRemoveDeps = [
"contextlib2"
];
nativeCheckInputs = [