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 { lib
, buildPythonPackage , buildPythonPackage
, contextlib2
, fetchPypi , fetchPypi
, mock , mock
, pytestCheckHook , pytestCheckHook
, pythonOlder , pythonOlder
, pythonRelaxDepsHook
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -19,8 +19,12 @@ buildPythonPackage rec {
hash = "sha256-8GcXESxhiVyrxHB3UriHFuhCCogZ1xQEUB4RT5EEMZc="; hash = "sha256-8GcXESxhiVyrxHB3UriHFuhCCogZ1xQEUB4RT5EEMZc=";
}; };
propagatedBuildInputs = [ nativeBuildInputs = [
contextlib2 pythonRelaxDepsHook
];
pythonRemoveDeps = [
"contextlib2"
]; ];
nativeCheckInputs = [ nativeCheckInputs = [