Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / ipython-sql / default.nix
blob2fc59859ab2a6c2a14b50f7ec3dec6f793d14ce4
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , pythonOlder
5 , ipython
6 , ipython-genutils
7 , pandas
8 , prettytable
9 , pytest
10 , sqlalchemy
11 , sqlparse
13 buildPythonPackage rec {
14   pname = "ipython-sql";
15   version = "0.4.0";
17   disabled = pythonOlder "3.7";
19   src = fetchFromGitHub {
20     owner = "catherinedevlin";
21     repo = "ipython-sql";
22     rev = "117764caf099d80100ed4b09fc004b55eed6f121";
23     hash = "sha256-ScQihsvRSnC7VIgy8Tzi1z4x6KIZo0SAeLPvHAVdrfA=";
24   };
26   postPatch = ''
27     substituteInPlace setup.py --replace 'prettytable<1' prettytable
28   '';
30   propagatedBuildInputs = [
31     ipython
32     ipython-genutils
33     prettytable
34     sqlalchemy
35     sqlparse
36   ];
38   nativeCheckInputs = [ ipython pandas pytest ];
40   checkPhase = ''
41     runHook preCheck
43     # running with ipython is required because the tests use objects available
44     # only inside of ipython, for example the global `get_ipython()` function
45     ipython -c 'import pytest; pytest.main()'
47     runHook postCheck
48   '';
50   pythonImportsCheck = [ "sql" ];
52   meta = with lib; {
53     description = "Introduces a %sql (or %%sql) magic.";
54     homepage = "https://github.com/catherinedevlin/ipython-sql";
55     license = licenses.mit;
56     maintainers = with maintainers; [ cpcloud ];
57   };