diff options
Diffstat (limited to 'pkgs/development/python-modules/pmw/default.nix')
-rw-r--r-- | pkgs/development/python-modules/pmw/default.nix | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/pmw/default.nix b/pkgs/development/python-modules/pmw/default.nix index ab9f3fb60b28..98988926b21e 100644 --- a/pkgs/development/python-modules/pmw/default.nix +++ b/pkgs/development/python-modules/pmw/default.nix @@ -1,4 +1,9 @@ -{ lib , buildPythonPackage , fetchPypi, tkinter }: +{ + lib, + buildPythonPackage, + fetchPypi, + tkinter, +}: buildPythonPackage rec { pname = "pmw"; @@ -17,7 +22,7 @@ buildPythonPackage rec { doCheck = false; meta = { - description = "A toolkit for building high-level compound widgets in Python using the Tkinter module"; + description = "Toolkit for building high-level compound widgets in Python using the Tkinter module"; homepage = "https://pmw.sourceforge.net/"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ mounium ]; |