python3Packages.manim: fix build (#380526)

authored by Gaétan Lepage and committed by GitHub d88aa729 e47020e3

+4 -1
+2 -1
pkgs/by-name/gi/git-sim/package.nix
··· 8 let 9 inherit (python3Packages) 10 buildPythonApplication 11 gitpython 12 manim 13 opencv4 ··· 35 36 patches = [ ./tests.patch ]; 37 38 - build-system = [ ]; 39 40 pythonRemoveDeps = [ "opencv-python-headless" ]; 41
··· 8 let 9 inherit (python3Packages) 10 buildPythonApplication 11 + setuptools 12 gitpython 13 manim 14 opencv4 ··· 36 37 patches = [ ./tests.patch ]; 38 39 + build-system = [ setuptools ]; 40 41 pythonRemoveDeps = [ "opencv-python-headless" ]; 42
+2
pkgs/development/python-modules/manim/default.nix
··· 6 7 # build-system 8 poetry-core, 9 10 # buildInputs 11 cairo, ··· 197 198 build-system = [ 199 poetry-core 200 ]; 201 202 patches = [ ./pytest-report-header.patch ];
··· 6 7 # build-system 8 poetry-core, 9 + setuptools, 10 11 # buildInputs 12 cairo, ··· 198 199 build-system = [ 200 poetry-core 201 + setuptools 202 ]; 203 204 patches = [ ./pytest-report-header.patch ];