From f89e81edcb55053bc56bc9d1be9bc46458c89594 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 12 May 2024 13:34:00 +0200 Subject: [PATCH] python312Packages.nats-python: format with nixfmt --- .../python-modules/nats-python/default.nix | 23 ++++++++----------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/pkgs/development/python-modules/nats-python/default.nix b/pkgs/development/python-modules/nats-python/default.nix index c59660063f61..f93b2feab69c 100644 --- a/pkgs/development/python-modules/nats-python/default.nix +++ b/pkgs/development/python-modules/nats-python/default.nix @@ -1,10 +1,11 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, fetchpatch -, poetry-core -, pythonOlder -, setuptools +{ + lib, + buildPythonPackage, + fetchFromGitHub, + fetchpatch, + poetry-core, + pythonOlder, + setuptools, }: buildPythonPackage rec { @@ -30,13 +31,9 @@ buildPythonPackage rec { }) ]; - build-system = [ - poetry-core - ]; + build-system = [ poetry-core ]; - dependencies = [ - setuptools - ]; + dependencies = [ setuptools ]; # Tests require a running NATS server doCheck = false;