2019-07-17 21:49:17 +01:00
|
|
|
{ lib, buildPythonPackage, fetchFromGitHub, cython, mkl, nose, six }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "mkl-service";
|
2020-03-23 01:44:47 +00:00
|
|
|
version = "2.3.0";
|
2019-07-17 21:49:17 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "IntelPython";
|
|
|
|
repo = "mkl-service";
|
|
|
|
rev = "v${version}";
|
2020-03-23 01:44:47 +00:00
|
|
|
sha256 = "1b4dkkl439rfaa86ywzc2zf9ifawhvdlaiqcg0il83cn5bzs7g5z";
|
2019-07-17 21:49:17 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
MKLROOT = mkl;
|
|
|
|
|
|
|
|
checkInputs = [ nose ];
|
|
|
|
nativeBuildInputs = [ cython ];
|
|
|
|
propagatedBuildInputs = [ mkl six ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Python hooks for Intel(R) Math Kernel Library runtime control settings";
|
|
|
|
homepage = "https://github.com/IntelPython/mkl-service";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ bhipple ];
|
|
|
|
};
|
|
|
|
}
|