Merge pull request #310605 from alyssais/contourpy

python3Packages.contourpy: fix typo in binding

authored by Martin Weinelt and committed by GitHub 3bb85598 339d6c51

+3 -3
+3 -3
pkgs/development/python-modules/contourpy/default.nix
··· 23 , pytestCheckHook 24 }: 25 26 - let countourpy = buildPythonPackage rec { 27 pname = "contourpy"; 28 version = "1.2.0"; 29 format = "pyproject"; ··· 61 ]; 62 63 passthru.tests = { 64 - check = countourpy.overridePythonAttrs (_: { doCheck = true; }); 65 }; 66 67 pythonImportsCheck = [ ··· 76 maintainers = with maintainers; [ ]; 77 }; 78 }; 79 - in countourpy
··· 23 , pytestCheckHook 24 }: 25 26 + let contourpy = buildPythonPackage rec { 27 pname = "contourpy"; 28 version = "1.2.0"; 29 format = "pyproject"; ··· 61 ]; 62 63 passthru.tests = { 64 + check = contourpy.overridePythonAttrs (_: { doCheck = true; }); 65 }; 66 67 pythonImportsCheck = [ ··· 76 maintainers = with maintainers; [ ]; 77 }; 78 }; 79 + in contourpy