python3Packages.ipython-sql: modernize, fix build (#434944)

This commit is contained in:
Sandro
2025-10-17 23:56:03 +00:00
committed by GitHub
@@ -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
];