uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
26
pkgs/development/python-modules/mkl-service/default.nix
Normal file
26
pkgs/development/python-modules/mkl-service/default.nix
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{ lib, buildPythonPackage, fetchFromGitHub, cython, mkl, nose, six }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "mkl-service";
|
||||
version = "2.4.0.post1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "IntelPython";
|
||||
repo = "mkl-service";
|
||||
rev = "v${version}";
|
||||
sha256 = "0ysjn8z1hkscb4cycbrvcb93r04w5793yylsy40h5dvjd04ns5jc";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue