Skip to content

Commit

Permalink
treewide: fix evaluation
Browse files Browse the repository at this point in the history
  • Loading branch information
globin committed Jan 19, 2017
1 parent fa79441 commit 9cb6727
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pkgs/development/interpreters/hy/default.nix
Expand Up @@ -16,7 +16,7 @@ pythonPackages.buildPythonApplication rec {
description = "A LISP dialect embedded in Python";
homepage = http://hylang.org/;
license = stdenv.lib.licenses.mit;
maintainers = stdenv.lib.maintainers.nixy;
maintainers = [ stdenv.lib.maintainers.nixy ];
platforms = stdenv.lib.platforms.all;
};
}
2 changes: 1 addition & 1 deletion pkgs/development/python-modules/flask-wtf.nix
Expand Up @@ -14,7 +14,7 @@ buildPythonPackage rec {

meta = with stdenv.lib; {
description = "Simple integration of Flask and WTForms.";
license = licenses.bsd;
license = licenses.bsd3;
maintainers = [ maintainers.mic92 ];
homepage = https://github.com/lepture/flask-wtf/;
};
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/python-modules/ghdiff.nix
Expand Up @@ -14,7 +14,7 @@ buildPythonPackage rec {

meta = with stdenv.lib; {
homepage = https://github.com/kilink/ghdiff;
license = license.mit;
license = licenses.mit;
description = "Generate Github-style HTML for unified diffs.";
maintainers = [ maintainers.mic92 ];
};
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/python-modules/twill/default.nix
Expand Up @@ -18,6 +18,6 @@ buildPythonPackage rec {
description = "a simple scripting language for Web browsing";
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ Mic92 ];
maintainers = with maintainers; [ mic92 ];
};
}

1 comment on commit 9cb6727

@Mic92
Copy link
Member

@Mic92 Mic92 commented on 9cb6727 Jan 19, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I will now run c200623#commitcomment-20543306 before every push, promised.

Please sign in to comment.