summary refs log tree commit diff
path: root/pkgs/development/python-modules/testcontainers/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/testcontainers/default.nix')
-rw-r--r--pkgs/development/python-modules/testcontainers/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/testcontainers/default.nix b/pkgs/development/python-modules/testcontainers/default.nix
index a690be88334..65c8ed8bf46 100644
--- a/pkgs/development/python-modules/testcontainers/default.nix
+++ b/pkgs/development/python-modules/testcontainers/default.nix
@@ -3,8 +3,7 @@
 , buildPythonPackage
 , deprecation
 , docker
-, wrapt
-}:
+, wrapt }:
 
 buildPythonPackage rec {
   pname = "testcontainers";
@@ -31,7 +30,9 @@ buildPythonPackage rec {
   ];
 
   meta = with lib; {
-    description = "Allows using docker containers for functional and integration testing";
+    description = ''
+      Allows using docker containers for functional and integration testing
+    '';
     homepage = "https://github.com/testcontainers/testcontainers-python";
     license = licenses.asl20;
     maintainers = with maintainers; [ onny ];