forked from mirrors/nixpkgs
3dbbd9f8c2
Changelog: https://github.com/dbcli/pgcli/blob/master/changelog.rst#201 Major feature of note is Python 3.7 support. Also default to using Python 3 because this is an application.
38 lines
1.1 KiB
Nix
38 lines
1.1 KiB
Nix
{ lib, python3Packages, fetchFromGitHub }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "pgcli";
|
|
version = "2.0.1";
|
|
|
|
# Python 2 won't have prompt_toolkit 2.x.x
|
|
# See: https://github.com/NixOS/nixpkgs/blob/f49e2ad3657dede09dc998a4a98fd5033fb52243/pkgs/top-level/python-packages.nix#L3408
|
|
disabled = python3Packages.isPy27;
|
|
|
|
src = python3Packages.fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "149naq3gp1n922vag7vixs0hd114bpbmbmv70k4kzc1q7jz748l2";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
cli-helpers click configobj humanize prompt_toolkit psycopg2
|
|
pygments sqlparse pgspecial setproctitle keyring
|
|
];
|
|
|
|
checkInputs = with python3Packages; [ pytest mock ];
|
|
|
|
checkPhase = ''
|
|
pytest
|
|
'';
|
|
|
|
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;
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ dywedir ];
|
|
};
|
|
}
|