ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / iminuit / default.nix
blob19c38ac3fbc828da85dd5c21ad74843b0b9bd00a
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , cmake
5 , numpy
6 , pytestCheckHook
7 , pythonOlder
8 }:
10 buildPythonPackage rec {
11   pname = "iminuit";
12   version = "2.17.0";
13   format = "setuptools";
15   disabled = pythonOlder "3.6";
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-dfSoorrSH9p7a9Qt98oEEg+yRjbr+bVm0lmybyBEsdA=";
20   };
22   nativeBuildInputs = [
23     cmake
24   ];
26   propagatedBuildInputs = [
27     numpy
28   ];
30   dontUseCmakeConfigure = true;
32   checkInputs = [
33     pytestCheckHook
34   ];
36   meta = with lib; {
37     homepage = "https://github.com/scikit-hep/iminuit";
38     description = "Python interface for the Minuit2 C++ library";
39     license = with licenses; [ mit lgpl2Only ];
40     maintainers = with maintainers; [ veprbl ];
41   };