4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
50 lines
1023 B
Nix
50 lines
1023 B
Nix
{ lib, stdenv
|
|
, fetchPypi
|
|
, buildPythonPackage
|
|
, Mako
|
|
, pytest
|
|
, numpy
|
|
, cffi
|
|
, pytools
|
|
, decorator
|
|
, appdirs
|
|
, six
|
|
, opencl-headers
|
|
, ocl-icd
|
|
, pybind11
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyopencl";
|
|
version = "2020.3.1";
|
|
|
|
checkInputs = [ pytest ];
|
|
buildInputs = [ opencl-headers ocl-icd pybind11 ];
|
|
|
|
propagatedBuildInputs = [ numpy cffi pytools decorator appdirs six Mako ];
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "abc689307cf34d3dcc94d43815f64e2265469b50ecce6c903a3180589666fb36";
|
|
};
|
|
|
|
# py.test is not needed during runtime, so remove it from `install_requires`
|
|
postPatch = ''
|
|
substituteInPlace setup.py --replace "pytest>=2" ""
|
|
'';
|
|
|
|
preBuild = ''
|
|
export HOME=$(mktemp -d)
|
|
'';
|
|
|
|
# gcc: error: pygpu_language_opencl.cpp: No such file or directory
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Python wrapper for OpenCL";
|
|
homepage = "https://github.com/pyopencl/pyopencl";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.fridh ];
|
|
};
|
|
}
|