depot/third_party/nixpkgs/pkgs/development/python-modules/iminuit/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

58 lines
1,019 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.26.0";
format = "pyproject";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-pRIz+/HC4AiqWE+e6mW2ww7VZiTk3qXU5TNwzNhMm04=";
};
nativeBuildInputs = [
cmake
scikit-build-core
pybind11
pathspec
ninja
pyproject-metadata
] ++ scikit-build-core.optional-dependencies.pyproject;
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 ];
};
}