e7ec2969af
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
79 lines
1.4 KiB
Nix
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
|