depot/third_party/nixpkgs/pkgs/development/python-modules/contourpy/default.nix
Default email e7ec2969af Project import generated by Copybara.
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
2024-01-13 09:15:51 +01:00

79 lines
1.4 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
# build
, meson
, meson-python
, ninja
, pybind11
# propagates
, numpy
# optionals
, bokeh
, chromedriver
, selenium
# tests
, matplotlib
, pillow
, pytestCheckHook
}:
let countourpy = 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 = countourpy.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 countourpy