02cf88bb76
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
66 lines
1.4 KiB
Nix
66 lines
1.4 KiB
Nix
{ lib, stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, cli-helpers
|
|
, click
|
|
, configobj
|
|
, prompt-toolkit
|
|
, psycopg2
|
|
, pygments
|
|
, sqlparse
|
|
, pgspecial
|
|
, setproctitle
|
|
, keyring
|
|
, pendulum
|
|
, pytestCheckHook
|
|
, sshtunnel
|
|
, mock
|
|
}:
|
|
|
|
# this is a pythonPackage because of the ipython line magics in pgcli.magic
|
|
# integrating with ipython-sql
|
|
buildPythonPackage rec {
|
|
pname = "pgcli";
|
|
version = "3.4.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-8DkwGH4n1g32WMqKBPtgHsXXR2xzXysVQsat7Fysj+I=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace "pgspecial>=1.13.1,<2.0.0" "pgspecial>=1.13.1"
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
cli-helpers
|
|
click
|
|
configobj
|
|
prompt-toolkit
|
|
psycopg2
|
|
pygments
|
|
sqlparse
|
|
pgspecial
|
|
setproctitle
|
|
keyring
|
|
pendulum
|
|
sshtunnel
|
|
];
|
|
|
|
checkInputs = [ pytestCheckHook mock ];
|
|
|
|
disabledTests = lib.optionals stdenv.isDarwin [ "test_application_name_db_uri" ];
|
|
|
|
meta = with lib; {
|
|
description = "Command-line interface for PostgreSQL";
|
|
longDescription = ''
|
|
Rich command-line interface for PostgreSQL with auto-completion and
|
|
syntax highlighting.
|
|
'';
|
|
homepage = "https://pgcli.com";
|
|
changelog = "https://github.com/dbcli/pgcli/raw/v${version}/changelog.rst";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ dywedir SuperSandro2000 ];
|
|
};
|
|
}
|