From 9af11af665d0f7a37235698df8306092e2cc3bcc Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 24 Jun 2023 20:40:46 +0200 Subject: [PATCH] python310Packages.typepy: combine inputs --- pkgs/development/python-modules/typepy/default.nix | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/typepy/default.nix b/pkgs/development/python-modules/typepy/default.nix index cdc6920574b6..a1d9e7df1534 100644 --- a/pkgs/development/python-modules/typepy/default.nix +++ b/pkgs/development/python-modules/typepy/default.nix @@ -24,10 +24,17 @@ buildPythonPackage rec { hash = "sha256-cgy1+6RZ1DUyH45bAKpGPOOZCwhCUghummw2fnfJGww="; }; - propagatedBuildInputs = [ mbstrdecoder python-dateutil pytz packaging ]; + propagatedBuildInputs = [ + mbstrdecoder + python-dateutil + pytz + packaging + ]; - nativeCheckInputs = [ pytestCheckHook ]; - checkInputs = [ tcolorpy ]; + nativeCheckInputs = [ + pytestCheckHook + tcolorpy + ]; meta = with lib; { description = "Library for variable type checker/validator/converter at a run time";