depot/third_party/nixpkgs/pkgs/development/python-modules/mkl-service/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

26 lines
699 B
Nix

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