quote homepage values, add self as maintainer

This commit is contained in:
Daniel Goertzen 2020-03-26 08:16:12 -05:00
parent 81bc4bb78a
commit 6adf6268ae
3 changed files with 10 additions and 4 deletions

View file

@ -2910,6 +2910,12 @@
githubId = 25820499; githubId = 25820499;
name = "Roman Kretschmer"; name = "Roman Kretschmer";
}; };
goertzenator = {
email = "daniel.goertzen@gmail.com";
github = "goertzenator";
githubId = 605072;
name = "Daniel Goertzen";
};
goibhniu = { goibhniu = {
email = "cillian.deroiste@gmail.com"; email = "cillian.deroiste@gmail.com";
github = "cillianderoiste"; github = "cillianderoiste";

View file

@ -21,9 +21,9 @@ buildPythonPackage rec {
propagatedBuildInputs = [ freetype ]; propagatedBuildInputs = [ freetype ];
meta = with lib; { meta = with lib; {
homepage = https://github.com/rougier/freetype-py; homepage = "https://github.com/rougier/freetype-py";
description = "FreeType (high-level Python API)"; description = "FreeType (high-level Python API)";
license = licenses.bsd3; license = licenses.bsd3;
maintainers = with maintainers; [ ]; maintainers = with maintainers; [ goertzenator ];
}; };
} }

View file

@ -31,9 +31,9 @@ buildPythonPackage rec {
doCheck = false; # otherwise runs OSX code on linux. doCheck = false; # otherwise runs OSX code on linux.
meta = with lib; { meta = with lib; {
homepage = http://vispy.org/index.html; homepage = "http://vispy.org/index.html";
description = "Interactive scientific visualization in Python"; description = "Interactive scientific visualization in Python";
license = licenses.bsd3; license = licenses.bsd3;
maintainers = with maintainers; [ ]; maintainers = with maintainers; [ goertzenator ];
}; };
} }