{ lib, buildPythonPackage, fetchFromGitHub, pythonOlder, # build meson, meson-python, ninja, pybind11, # propagates numpy, # optionals bokeh, chromedriver, selenium, # tests matplotlib, pillow, pytestCheckHook, }: let contourpy = buildPythonPackage rec { pname = "contourpy"; version = "1.3.0"; format = "pyproject"; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "contourpy"; repo = "contourpy"; rev = "refs/tags/v${version}"; hash = "sha256-QvAIV2Y8H3oPZCF5yaqy2KWfs7aMyRX6aAU5t8E9Vpo="; }; nativeBuildInputs = [ meson ninja pybind11 ]; build-system = [ meson-python ]; dependencies = [ numpy ]; passthru.optional-depdendencies = { bokeh = [ bokeh chromedriver selenium ]; }; doCheck = false; # infinite recursion with matplotlib, tests in passthru nativeCheckInputs = [ matplotlib pillow pytestCheckHook ]; passthru.tests = { check = contourpy.overridePythonAttrs (_: { doCheck = true; }); }; pythonImportsCheck = [ "contourpy" ]; meta = with lib; { changelog = "https://github.com/contourpy/contourpy/releases/tag/v${version}"; description = "Python library for calculating contours in 2D quadrilateral grids"; homepage = "https://github.com/contourpy/contourpy"; license = licenses.bsd3; maintainers = [ ]; }; }; in contourpy