depot/third_party/nixpkgs/pkgs/development/python-modules/pgcli/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

71 lines
1.3 KiB
Nix

{
lib,
stdenv,
buildPythonPackage,
fetchPypi,
cli-helpers,
click,
configobj,
prompt-toolkit,
psycopg,
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 = "4.0.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-8v7qIJnOGtXoqdXZOw7a9g3GHpeyG3XpHZcjk5zlO9I=";
};
propagatedBuildInputs = [
cli-helpers
click
configobj
prompt-toolkit
psycopg
pygments
sqlparse
pgspecial
setproctitle
keyring
pendulum
sshtunnel
];
nativeCheckInputs = [
pytestCheckHook
mock
];
disabledTests = lib.optionals stdenv.isDarwin [ "test_application_name_db_uri" ];
meta = with lib; {
description = "Command-line interface for PostgreSQL";
mainProgram = "pgcli";
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
];
};
}