Merge pull request #64932 from bhpdt/add/mkl-service

pythonPackages.mkl-service: init at 2.1.0
This commit is contained in:
markuskowa
2019-07-25 12:04:17 +02:00
committed by GitHub
2 changed files with 30 additions and 2 deletions

View File

@@ -0,0 +1,26 @@
{ lib, buildPythonPackage, fetchFromGitHub, cython, mkl, nose, six }:
buildPythonPackage rec {
pname = "mkl-service";
version = "2.1.0";
src = fetchFromGitHub {
owner = "IntelPython";
repo = "mkl-service";
rev = "v${version}";
sha256 = "1bnpgx629rxqf0yhn0jn68ypj3dqv6njc3981j1g8j8rsm5lycrn";
};
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 ];
};
}