diff options
Diffstat (limited to 'pkgs/development/python-modules/inifile/default.nix')
-rw-r--r-- | pkgs/development/python-modules/inifile/default.nix | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/pkgs/development/python-modules/inifile/default.nix b/pkgs/development/python-modules/inifile/default.nix index c3b1edfb89d0..a03e4070326f 100644 --- a/pkgs/development/python-modules/inifile/default.nix +++ b/pkgs/development/python-modules/inifile/default.nix @@ -1,6 +1,7 @@ -{ lib -, buildPythonPackage -, fetchPypi +{ + lib, + buildPythonPackage, + fetchPypi, }: buildPythonPackage rec { @@ -14,10 +15,9 @@ buildPythonPackage rec { }; meta = with lib; { - description = "A small INI library for Python"; - homepage = "https://github.com/mitsuhiko/python-inifile"; - license = licenses.bsd0; - maintainers = with maintainers; [ ]; + description = "Small INI library for Python"; + homepage = "https://github.com/mitsuhiko/python-inifile"; + license = licenses.bsd0; + maintainers = [ ]; }; - } |