From 200c034c85d1558b35cbe8ea62154a1fb7ed7ca1 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 11 Apr 2024 23:41:13 +0200 Subject: [PATCH] python312Packages.std-uritemplate: format with nixfmt --- .../std-uritemplate/default.nix | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/pkgs/development/python-modules/std-uritemplate/default.nix b/pkgs/development/python-modules/std-uritemplate/default.nix index e2adaa5d3a97..0c26a135d0ef 100644 --- a/pkgs/development/python-modules/std-uritemplate/default.nix +++ b/pkgs/development/python-modules/std-uritemplate/default.nix @@ -1,8 +1,9 @@ -{ lib -, buildPythonPackage -, fetchPypi -, poetry-core -, pythonOlder +{ + lib, + buildPythonPackage, + fetchPypi, + poetry-core, + pythonOlder, }: buildPythonPackage rec { @@ -18,16 +19,12 @@ buildPythonPackage rec { hash = "sha256-85dldY+2WB+Hn6fBBHoKJ7fIe7fDyddYxAjDD83lHGc="; }; - build-system = [ - poetry-core - ]; + build-system = [ poetry-core ]; # Module doesn't have unittest, only functional tests doCheck = false; - pythonImportsCheck = [ - "stduritemplate" - ]; + pythonImportsCheck = [ "stduritemplate" ]; meta = with lib; { description = "Std-uritemplate implementation for Python";