From 0fd633a1a7fdb3d986f59a1fdeeb2dd5a369ac55 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 4 May 2024 12:10:50 +0200 Subject: [PATCH] python312Packages.types-beautifulsoup4: format with nixfmt --- .../types-beautifulsoup4/default.nix | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/pkgs/development/python-modules/types-beautifulsoup4/default.nix b/pkgs/development/python-modules/types-beautifulsoup4/default.nix index 4ac5808d968f..9b9823d105b2 100644 --- a/pkgs/development/python-modules/types-beautifulsoup4/default.nix +++ b/pkgs/development/python-modules/types-beautifulsoup4/default.nix @@ -1,7 +1,8 @@ -{ lib -, buildPythonPackage -, fetchPypi -, types-html5lib +{ + lib, + buildPythonPackage, + fetchPypi, + types-html5lib, }: buildPythonPackage rec { @@ -14,16 +15,12 @@ buildPythonPackage rec { hash = "sha256-17evTMxS/CJ4TTOlKWleNDKam91dtqZJybJcssOhSNU="; }; - propagatedBuildInputs = [ - types-html5lib - ]; + propagatedBuildInputs = [ types-html5lib ]; # Module has no tests doCheck = false; - pythonImportsCheck = [ - "bs4-stubs" - ]; + pythonImportsCheck = [ "bs4-stubs" ]; meta = with lib; { description = "Typing stubs for beautifulsoup4";