Commit 8dd35e19 authored by Theodore Ni's avatar Theodore Ni Committed by Yt
Browse files

python310Packages.pdf2docx: add pip as a build dependency

parent 83f55e3b
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -5,6 +5,7 @@
, buildPythonPackage
, pythonRelaxDepsHook
, imagemagick
, pip
, pytestCheckHook
, pymupdf
, fire
@@ -29,7 +30,12 @@ buildPythonPackage {
    hash = "sha256-NrT4GURQIJbqnHstfJrPzwLXT9c2oGBi4QJ6eGIFwu4=";
  };

  nativeBuildInputs = [ pythonRelaxDepsHook imagemagick ];
  nativeBuildInputs = [
    pip
    pythonRelaxDepsHook
    imagemagick
  ];

  pythonRemoveDeps = [ "opencv-python" ];

  preBuild = "echo '${version}' > version.txt";