1{ lib, buildPythonPackage, fetchFromGitHub, cython, mkl, nose, six }:
2
3buildPythonPackage rec {
4 pname = "mkl-service";
5 version = "2.4.0.post1";
6
7 src = fetchFromGitHub {
8 owner = "IntelPython";
9 repo = "mkl-service";
10 rev = "v${version}";
11 sha256 = "0ysjn8z1hkscb4cycbrvcb93r04w5793yylsy40h5dvjd04ns5jc";
12 };
13
14 MKLROOT = mkl;
15
16 nativeCheckInputs = [ nose ];
17 nativeBuildInputs = [ cython ];
18 propagatedBuildInputs = [ mkl six ];
19
20 meta = with lib; {
21 description = "Python hooks for Intel(R) Math Kernel Library runtime control settings";
22 homepage = "https://github.com/IntelPython/mkl-service";
23 license = licenses.bsd3;
24 maintainers = with maintainers; [ bhipple ];
25 };
26}