tree-wide: fix either check-meta or meta attrs of all the packages I evaluate

This commit is contained in:
Jan Malakhovski
2017-12-05 11:57:11 +00:00
committed by Robin Gloster
parent 8ae51ff9c1
commit 1858e8909e
5 changed files with 11 additions and 10 deletions

View File

@@ -30,10 +30,10 @@ buildPythonPackage rec {
# gcc: error: pygpu_language_opencl.cpp: No such file or directory
doCheck = false;
meta = {
meta = with stdenv.lib; {
description = "Python wrapper for OpenCL";
homepage = https://github.com/pyopencl/pyopencl;
license = stdenv.lib.licenses.mit;
maintainer = stdenv.lib.maintainers.fridh;
license = licenses.mit;
maintainers = [ maintainers.fridh ];
};
}