linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / iminuit / default.nix
blob5bfb66fe4c6c82a908c1581e84fc155687d0a576
1 { lib, buildPythonPackage, isPy3k, fetchPypi, cmake, numpy, pytestCheckHook }:
3 buildPythonPackage rec {
4   pname = "iminuit";
5   version = "2.4.0";
6   disabled = !isPy3k;
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "350c13d33f3ec5884335aea1cc11a17ae49dd8e6b2181c3f1b3c9c27e2e0b228";
11   };
13   nativeBuildInputs = [ cmake ];
14   propagatedBuildInputs = [ numpy ];
16   dontUseCmakeConfigure = true;
18   checkInputs = [ pytestCheckHook ];
20   meta = with lib; {
21     homepage = "https://github.com/scikit-hep/iminuit";
22     description = "Python interface for the Minuit2 C++ library";
23     license = with licenses; [ mit lgpl2Only ];
24     maintainers = with maintainers; [ veprbl ];
25   };