From 61990c13bc7c3b4587bf2509be6c891922eaffd9 Mon Sep 17 00:00:00 2001 From: Ryan Omasta Date: Tue, 19 Aug 2025 03:25:10 -0600 Subject: [PATCH] python3Packages.ipython-sql: fix build --- pkgs/development/python-modules/ipython-sql/default.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/ipython-sql/default.nix b/pkgs/development/python-modules/ipython-sql/default.nix index a65eac31eb3c..bf4430c3e6ce 100644 --- a/pkgs/development/python-modules/ipython-sql/default.nix +++ b/pkgs/development/python-modules/ipython-sql/default.nix @@ -2,11 +2,11 @@ lib, buildPythonPackage, fetchPypi, - pythonOlder, setuptools, ipython, ipython-genutils, prettytable, + six, sqlalchemy, sqlparse, }: @@ -15,19 +15,18 @@ buildPythonPackage rec { version = "0.5.0"; pyproject = true; - disabled = pythonOlder "3.7"; - src = fetchPypi { inherit pname version; hash = "sha256-PbPOf5qV369Dh2+oCxa9u5oE3guhIELKsT6fWW/P/b4="; }; - nativeBuildInputs = [ setuptools ]; + build-system = [ setuptools ]; - propagatedBuildInputs = [ + dependencies = [ ipython ipython-genutils prettytable + six sqlalchemy sqlparse ];