ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
65 lines
1.3 KiB
Nix
65 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 ];
|
|
};
|
|
}
|