From f988da7aac8064b24a59c8ce65ae9d1758d2d0ec Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Tue, 1 Apr 2025 04:06:19 +0200 Subject: [PATCH] python313Packages.isort: 5.13.2 -> 6.0.1 https://github.com/PyCQA/isort/compare/refs/tags/5.13.2...6.0.1 --- pkgs/development/python-modules/isort/default.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/development/python-modules/isort/default.nix b/pkgs/development/python-modules/isort/default.nix index 79a5a1a002dd..1a56040b083a 100644 --- a/pkgs/development/python-modules/isort/default.nix +++ b/pkgs/development/python-modules/isort/default.nix @@ -3,28 +3,28 @@ buildPythonPackage, fetchFromGitHub, colorama, + hatchling, + hatch-vcs, hypothesis, - poetry-core, - setuptools, pylama, pytestCheckHook, }: buildPythonPackage rec { pname = "isort"; - version = "5.13.2"; + version = "6.0.1"; format = "pyproject"; src = fetchFromGitHub { owner = "PyCQA"; repo = "isort"; tag = version; - hash = "sha256-/1iKYmtNRw9u59zzJDwV7b9+EPxFJDHvhjTioGt5LLU="; + hash = "sha256-+O6bIbIpEMRUhzGUOQtBlHB//DaXaaOTjqMBTFvYnLk="; }; - nativeBuildInputs = [ - poetry-core - setuptools + build-system = [ + hatchling + hatch-vcs ]; nativeCheckInputs = [