75 lines
1.3 KiB
Nix
75 lines
1.3 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pythonOlder
|
|
|
|
# build
|
|
, pybind11
|
|
, setuptools
|
|
|
|
# propagates
|
|
, numpy
|
|
|
|
# optionals
|
|
, bokeh
|
|
, chromedriver
|
|
, selenium
|
|
|
|
# tests
|
|
, matplotlib
|
|
, pillow
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
let countourpy = buildPythonPackage rec {
|
|
pname = "contourpy";
|
|
version = "1.0.7";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "contourpy";
|
|
repo = "contourpy";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-n04b9yUoUMH2H7t8um/8h5XaL3hzY/uNMYmOKTVKEPA=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pybind11
|
|
setuptools
|
|
];
|
|
|
|
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
|