mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
python3Packages.iminuit: init at 2.4.0
This commit is contained in:
parent
c00c67653a
commit
5c5235bdee
26
pkgs/development/python-modules/iminuit/default.nix
Normal file
26
pkgs/development/python-modules/iminuit/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ lib, buildPythonPackage, isPy3k, fetchPypi, cmake, numpy, pytestCheckHook }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "iminuit";
|
||||
version = "2.4.0";
|
||||
disabled = !isPy3k;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "350c13d33f3ec5884335aea1cc11a17ae49dd8e6b2181c3f1b3c9c27e2e0b228";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
propagatedBuildInputs = [ numpy ];
|
||||
|
||||
dontUseCmakeConfigure = true;
|
||||
|
||||
checkInputs = [ 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 ];
|
||||
};
|
||||
}
|
@ -3242,6 +3242,8 @@ in {
|
||||
|
||||
imgsize = callPackage ../development/python-modules/imgsize { };
|
||||
|
||||
iminuit = callPackage ../development/python-modules/iminuit { };
|
||||
|
||||
immutables = callPackage ../development/python-modules/immutables { };
|
||||
|
||||
impacket = callPackage ../development/python-modules/impacket { };
|
||||
|
Loading…
Reference in New Issue
Block a user