Merge pull request #310605 from alyssais/contourpy

python3Packages.contourpy: fix typo in binding
This commit is contained in:
Martin Weinelt 2024-05-10 17:42:10 +02:00 committed by GitHub
commit 3bb855986f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -23,7 +23,7 @@
, pytestCheckHook
}:
let countourpy = buildPythonPackage rec {
let contourpy = buildPythonPackage rec {
pname = "contourpy";
version = "1.2.0";
format = "pyproject";
@ -61,7 +61,7 @@ let countourpy = buildPythonPackage rec {
];
passthru.tests = {
check = countourpy.overridePythonAttrs (_: { doCheck = true; });
check = contourpy.overridePythonAttrs (_: { doCheck = true; });
};
pythonImportsCheck = [
@ -76,4 +76,4 @@ let countourpy = buildPythonPackage rec {
maintainers = with maintainers; [ ];
};
};
in countourpy
in contourpy