python310Packages.duecredit: don't depend on contextlib2

This commit is contained in:
Robert Schütz 2023-02-04 23:37:07 -08:00
parent fe20983f25
commit 7e5512144f

View File

@ -2,7 +2,6 @@
, buildPythonPackage
, fetchPypi
, isPy27
, contextlib2
, pytest
, pytestCheckHook
, vcrpy
@ -25,7 +24,7 @@ buildPythonPackage rec {
# bin/duecredit requires setuptools at runtime
propagatedBuildInputs = [ citeproc-py requests setuptools six ];
nativeCheckInputs = [ contextlib2 pytest pytestCheckHook vcrpy ];
nativeCheckInputs = [ pytest pytestCheckHook vcrpy ];
preCheck = ''
export HOME=$(mktemp -d)