1 { lib, buildPythonPackage, fetchFromGitHub, cython, mkl, nose, six }:
3 buildPythonPackage rec {
5 version = "2.4.0.post1";
7 src = fetchFromGitHub {
11 sha256 = "0ysjn8z1hkscb4cycbrvcb93r04w5793yylsy40h5dvjd04ns5jc";
16 checkInputs = [ nose ];
17 nativeBuildInputs = [ cython ];
18 propagatedBuildInputs = [ mkl six ];
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 ];