diff options
Diffstat (limited to 'pkgs/development/python-modules/iminuit/default.nix')
-rw-r--r-- | pkgs/development/python-modules/iminuit/default.nix | 56 |
1 files changed, 28 insertions, 28 deletions
diff --git a/pkgs/development/python-modules/iminuit/default.nix b/pkgs/development/python-modules/iminuit/default.nix index 113d19928d10..af1a63f42951 100644 --- a/pkgs/development/python-modules/iminuit/default.nix +++ b/pkgs/development/python-modules/iminuit/default.nix @@ -1,33 +1,34 @@ -{ lib -, buildPythonPackage -, fetchPypi -, pythonOlder - -# build-system -, cmake -, scikit-build-core -, pybind11 -, pathspec -, ninja -, pyproject-metadata - -# dependencies -, numpy - -# tests -, pytestCheckHook +{ + 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.25.2"; + version = "2.30.1"; format = "pyproject"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; - hash = "sha256-O/ihuWhlpgzt8pE19P6uCfp8ZiN9KfaN7WTpeoI6mz4="; + hash = "sha256-KBW/3rjn94GF8xa3Xi1LGdD2mTvcX/AzUu03twp5Y2A="; }; nativeBuildInputs = [ @@ -37,22 +38,21 @@ buildPythonPackage rec { pathspec ninja pyproject-metadata - ] ++ scikit-build-core.optional-dependencies.pyproject; - - propagatedBuildInputs = [ - numpy ]; + propagatedBuildInputs = [ numpy ]; + dontUseCmakeConfigure = true; - nativeCheckInputs = [ - pytestCheckHook - ]; + 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 ]; + license = with licenses; [ + mit + lgpl2Only + ]; maintainers = with maintainers; [ veprbl ]; }; } |