diff options
Diffstat (limited to 'pkgs/development/python-modules/pyhumps/default.nix')
-rw-r--r-- | pkgs/development/python-modules/pyhumps/default.nix | 25 |
1 files changed, 10 insertions, 15 deletions
diff --git a/pkgs/development/python-modules/pyhumps/default.nix b/pkgs/development/python-modules/pyhumps/default.nix index b7ed9548e3a2..e5f36fe22d9d 100644 --- a/pkgs/development/python-modules/pyhumps/default.nix +++ b/pkgs/development/python-modules/pyhumps/default.nix @@ -1,9 +1,10 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, poetry-core -, pytestCheckHook -, pythonOlder +{ + lib, + buildPythonPackage, + fetchFromGitHub, + poetry-core, + pytestCheckHook, + pythonOlder, }: buildPythonPackage rec { @@ -20,17 +21,11 @@ buildPythonPackage rec { hash = "sha256-ElL/LY2V2Z3efdV5FnDy9dSoBltULrzxsjaOx+7W9Oo="; }; - nativeBuildInputs = [ - poetry-core - ]; + nativeBuildInputs = [ poetry-core ]; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; - pythonImportsCheck = [ - "humps" - ]; + pythonImportsCheck = [ "humps" ]; meta = with lib; { description = "Module to convert strings (and dictionary keys) between snake case, camel case and pascal case"; |