From aa25c9df7f7121512e229e23ec465be023246deb Mon Sep 17 00:00:00 2001 From: Sarah Clark Date: Mon, 13 Oct 2025 20:35:54 -0700 Subject: [PATCH] python3Packages.tabcmd: build from GitHub source --- pkgs/development/python-modules/tabcmd/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/tabcmd/default.nix b/pkgs/development/python-modules/tabcmd/default.nix index 5fba05536150..dc3d592cd3cf 100644 --- a/pkgs/development/python-modules/tabcmd/default.nix +++ b/pkgs/development/python-modules/tabcmd/default.nix @@ -1,13 +1,11 @@ { lib, appdirs, - argparse, buildPythonPackage, doit, - fetchPypi, + fetchFromGitHub, ftfy, mock, - pyinstaller-versionfile, pytest-order, pytestCheckHook, python, @@ -28,9 +26,11 @@ buildPythonPackage rec { version = "2.0.18"; pyproject = true; - src = fetchPypi { - inherit pname version; - hash = "sha256-erGngJ3CW+c3PuVq4BTrPGSZ2L/M0EykSoZocku0lOE="; + src = fetchFromGitHub { + owner = "tableau"; + repo = "tabcmd"; + tag = "v${version}"; + hash = "sha256-Eb9ZboYdco6opKW3Tz0+U9VREWdEyt2xuG62n9WIXPk="; }; prePatch = ''