13 buildPythonPackage rec {
14 pname = "ipython-sql";
18 disabled = pythonOlder "3.7";
21 inherit pname version;
22 hash = "sha256-PbPOf5qV369Dh2+oCxa9u5oE3guhIELKsT6fWW/P/b4=";
25 nativeBuildInputs = [ setuptools ];
27 propagatedBuildInputs = [
35 # pypi tarball has no tests
38 pythonImportsCheck = [ "sql" ];
41 description = "Introduces a %sql (or %%sql) magic";
42 homepage = "https://github.com/catherinedevlin/ipython-sql";
43 license = licenses.mit;
44 maintainers = with maintainers; [ cpcloud ];