diff options
Diffstat (limited to 'pkgs/development/python-modules/nanoid/default.nix')
-rw-r--r-- | pkgs/development/python-modules/nanoid/default.nix | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/pkgs/development/python-modules/nanoid/default.nix b/pkgs/development/python-modules/nanoid/default.nix index 5054756a3092..1570c28f9e66 100644 --- a/pkgs/development/python-modules/nanoid/default.nix +++ b/pkgs/development/python-modules/nanoid/default.nix @@ -1,7 +1,8 @@ -{ lib -, buildPythonPackage -, fetchPypi -, pytestCheckHook +{ + lib, + buildPythonPackage, + fetchPypi, + pytestCheckHook, }: buildPythonPackage rec { @@ -16,18 +17,14 @@ buildPythonPackage rec { doCheck = false; # tests not in sdist, git not tagged - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; - pythonImportsCheck = [ - "nanoid" - ]; + pythonImportsCheck = [ "nanoid" ]; meta = with lib; { - description = "A tiny, secure, URL-friendly, unique string ID generator for Python"; + description = "Tiny, secure, URL-friendly, unique string ID generator for Python"; homepage = "https://github.com/puyuan/py-nanoid"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } |