diff options
Diffstat (limited to 'pkgs/development/python-modules/httmock/default.nix')
-rw-r--r-- | pkgs/development/python-modules/httmock/default.nix | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/pkgs/development/python-modules/httmock/default.nix b/pkgs/development/python-modules/httmock/default.nix index a305ec1f7baf..6428b99868f2 100644 --- a/pkgs/development/python-modules/httmock/default.nix +++ b/pkgs/development/python-modules/httmock/default.nix @@ -1,8 +1,9 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, requests -, pytestCheckHook +{ + lib, + buildPythonPackage, + fetchFromGitHub, + requests, + pytestCheckHook, }: buildPythonPackage rec { @@ -27,7 +28,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "httmock" ]; meta = with lib; { - description = "A mocking library for requests"; + description = "Mocking library for requests"; homepage = "https://github.com/patrys/httmock"; license = licenses.asl20; maintainers = with maintainers; [ nyanloutre ]; |