Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / mkl-service / default.nix
blob991c6e8813c396dde2a4b8de7bb31b88c7c61eaa
1 { lib, buildPythonPackage, fetchFromGitHub, cython, mkl, nose, six }:
3 buildPythonPackage rec {
4   pname = "mkl-service";
5   version = "2.4.1";
6   format = "setuptools";
8   src = fetchFromGitHub {
9     owner = "IntelPython";
10     repo = "mkl-service";
11     rev = "refs/tags/v${version}";
12     sha256 = "sha256-4UPiQt1hVVlPFZnuKlMK3FLv2cIEXToHKxnyYLXR/sY=";
13   };
15   MKLROOT = mkl;
17   nativeCheckInputs = [ nose ];
18   nativeBuildInputs = [ cython ];
19   propagatedBuildInputs = [ mkl six ];
21   meta = with lib; {
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 ];
26   };