tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.iminuit: init at 2.4.0
Dmitry Kalinkin
4 years ago
5c5235bd
c00c6765
+28
2 changed files
expand all
collapse all
unified
split
pkgs
development
python-modules
iminuit
default.nix
top-level
python-packages.nix
+26
pkgs/development/python-modules/iminuit/default.nix
···
1
1
+
{ lib, buildPythonPackage, isPy3k, fetchPypi, cmake, numpy, pytestCheckHook }:
2
2
+
3
3
+
buildPythonPackage rec {
4
4
+
pname = "iminuit";
5
5
+
version = "2.4.0";
6
6
+
disabled = !isPy3k;
7
7
+
8
8
+
src = fetchPypi {
9
9
+
inherit pname version;
10
10
+
sha256 = "350c13d33f3ec5884335aea1cc11a17ae49dd8e6b2181c3f1b3c9c27e2e0b228";
11
11
+
};
12
12
+
13
13
+
nativeBuildInputs = [ cmake ];
14
14
+
propagatedBuildInputs = [ numpy ];
15
15
+
16
16
+
dontUseCmakeConfigure = true;
17
17
+
18
18
+
checkInputs = [ pytestCheckHook ];
19
19
+
20
20
+
meta = with lib; {
21
21
+
homepage = "https://github.com/scikit-hep/iminuit";
22
22
+
description = "Python interface for the Minuit2 C++ library";
23
23
+
license = with licenses; [ mit lgpl2Only ];
24
24
+
maintainers = with maintainers; [ veprbl ];
25
25
+
};
26
26
+
}
+2
pkgs/top-level/python-packages.nix
···
3242
3242
3243
3243
imgsize = callPackage ../development/python-modules/imgsize { };
3244
3244
3245
3245
+
iminuit = callPackage ../development/python-modules/iminuit { };
3246
3246
+
3245
3247
immutables = callPackage ../development/python-modules/immutables { };
3246
3248
3247
3249
impacket = callPackage ../development/python-modules/impacket { };