Unverified Commit f12f85dc authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

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

parents 1fabef43 61990c13
Loading
Loading
Loading
Loading
+4 −5
Original line number Diff line number Diff line
@@ -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
  ];