1 { lib, buildPythonPackage, fetchFromGitHub, cython, mkl, nose, six }:
3 buildPythonPackage rec {
8 src = fetchFromGitHub {
11 rev = "refs/tags/v${version}";
12 sha256 = "sha256-4UPiQt1hVVlPFZnuKlMK3FLv2cIEXToHKxnyYLXR/sY=";
17 nativeCheckInputs = [ nose ];
18 nativeBuildInputs = [ cython ];
19 propagatedBuildInputs = [ mkl six ];
22 description = "Python hooks for Intel(R) Math Kernel Library runtime control settings";
23 homepage = "https://github.com/IntelPython/mkl-service";
24 license = licenses.bsd3;
25 maintainers = with maintainers; [ bhipple ];