From 4db081fc198958981943dba024b1541ff9bfe757 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Mon, 13 Jul 2026 14:31:36 +0200 Subject: [PATCH] Revert "python3Packages.invoke: 2.2.1 -> 3.0.3" This reverts commit 17c5975cd61257373860b24f0a13c7384d922908. Breaks fabric, which requires invoke<3. --- pkgs/development/python-modules/invoke/default.nix | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/pkgs/development/python-modules/invoke/default.nix b/pkgs/development/python-modules/invoke/default.nix index 78e5f7156356..77f77a7e47ad 100644 --- a/pkgs/development/python-modules/invoke/default.nix +++ b/pkgs/development/python-modules/invoke/default.nix @@ -3,28 +3,23 @@ bash, buildPythonPackage, fetchPypi, - setuptools, stdenv, }: buildPythonPackage rec { pname = "invoke"; - version = "3.0.3"; - pyproject = true; + version = "2.2.1"; + format = "setuptools"; src = fetchPypi { inherit pname version; - hash = "sha256-Q3tqYiIjgkOAv7TmT2EnEaa2SMeV9WXvyGJa9m+1fww="; + hash = "sha256-UVv0m0pIkyt5sCRZA0jaIvOcSULf+ZGtH7i4uuob5wc="; }; postPatch = '' sed -e 's|/bin/bash|${bash}/bin/bash|g' -i invoke/config.py ''; - build-system = [ - setuptools - ]; - # errors with vendored libs doCheck = false;