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 23 , pytestCheckHook 24 24 }: 25 25 26 - let countourpy = buildPythonPackage rec { 26 + let contourpy = buildPythonPackage rec { 27 27 pname = "contourpy"; 28 28 version = "1.2.0"; 29 29 format = "pyproject"; ··· 61 61 ]; 62 62 63 63 passthru.tests = { 64 - check = countourpy.overridePythonAttrs (_: { doCheck = true; }); 64 + check = contourpy.overridePythonAttrs (_: { doCheck = true; }); 65 65 }; 66 66 67 67 pythonImportsCheck = [ ··· 76 76 maintainers = with maintainers; [ ]; 77 77 }; 78 78 }; 79 - in countourpy 79 + in contourpy