depot/third_party/nixpkgs/pkgs/development/python-modules/iminuit/default.nix
Default email 7e47f3658e Project import generated by Copybara.
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
2024-09-26 11:04:55 +00:00

58 lines
966 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pythonOlder,
# build-system
cmake,
scikit-build-core,
pybind11,
pathspec,
ninja,
pyproject-metadata,
# dependencies
numpy,
# tests
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "iminuit";
version = "2.30.0";
format = "pyproject";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-jeC4K7azOBFls46VdhoCcBiaAIPNuS4VTfFlfsZRmkA=";
};
nativeBuildInputs = [
cmake
scikit-build-core
pybind11
pathspec
ninja
pyproject-metadata
];
propagatedBuildInputs = [ numpy ];
dontUseCmakeConfigure = true;
nativeCheckInputs = [ pytestCheckHook ];
meta = with lib; {
homepage = "https://github.com/scikit-hep/iminuit";
description = "Python interface for the Minuit2 C++ library";
license = with licenses; [
mit
lgpl2Only
];
maintainers = with maintainers; [ veprbl ];
};
}