ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / mkl-service / default.nix
blobbe0ac454ee98de60e0b3f7acb675b1dd2cc32d4f
1 { lib, buildPythonPackage, fetchFromGitHub, cython, mkl, nose, six }:
3 buildPythonPackage rec {
4   pname = "mkl-service";
5   version = "2.4.0.post1";
7   src = fetchFromGitHub {
8     owner = "IntelPython";
9     repo = "mkl-service";
10     rev = "v${version}";
11     sha256 = "0ysjn8z1hkscb4cycbrvcb93r04w5793yylsy40h5dvjd04ns5jc";
12   };
14   MKLROOT = mkl;
16   checkInputs = [ nose ];
17   nativeBuildInputs = [ cython ];
18   propagatedBuildInputs = [ mkl six ];
20   meta = with lib; {
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 ];
25   };