1{ lib, buildPythonPackage, fetchFromGitHub, cython, mkl, nose, six }:
2
3buildPythonPackage rec {
4 pname = "mkl-service";
5 version = "2.1.0";
6
7 src = fetchFromGitHub {
8 owner = "IntelPython";
9 repo = "mkl-service";
10 rev = "v${version}";
11 sha256 = "1bnpgx629rxqf0yhn0jn68ypj3dqv6njc3981j1g8j8rsm5lycrn";
12 };
13
14 MKLROOT = mkl;
15
16 checkInputs = [ 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}