depot/third_party/nixpkgs/pkgs/development/python-modules/contourpy/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

84 lines
1.5 KiB
Nix

{
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.2.0";
format = "pyproject";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "contourpy";
repo = "contourpy";
rev = "refs/tags/v${version}";
hash = "sha256-5yZrIwwe9dL5vtdSJnOhY9X4BdK/cdEY4DkVVjCq1uw=";
};
nativeBuildInputs = [
meson
meson-python
ninja
pybind11
];
propagatedBuildInputs = [ 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 = with maintainers; [ ];
};
};
in
contourpy