Merge pull request #167883 from SuperSandro2000/pgcli

This commit is contained in:
Sandro 2022-04-10 03:28:56 +02:00 committed by GitHub
commit 31aa67f50a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,7 +5,6 @@
, cli-helpers , cli-helpers
, click , click
, configobj , configobj
, humanize
, prompt-toolkit , prompt-toolkit
, psycopg2 , psycopg2
, pygments , pygments
@ -15,25 +14,23 @@
, keyring , keyring
, pendulum , pendulum
, pytestCheckHook , pytestCheckHook
, sshtunnel
, mock , mock
}: }:
buildPythonApplication rec { buildPythonApplication rec {
pname = "pgcli"; pname = "pgcli";
version = "3.3.1"; version = "3.4.1";
disabled = !isPy3k;
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "sha256-/MyeVcpopK0Ih6z6KZGvs7ivk/PM6a2iSeatiYeZM6E="; sha256 = "sha256-8DkwGH4n1g32WMqKBPtgHsXXR2xzXysVQsat7Fysj+I=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
cli-helpers cli-helpers
click click
configobj configobj
humanize
prompt-toolkit prompt-toolkit
psycopg2 psycopg2
pygments pygments
@ -42,6 +39,7 @@ buildPythonApplication rec {
setproctitle setproctitle
keyring keyring
pendulum pendulum
sshtunnel
]; ];
checkInputs = [ pytestCheckHook mock ]; checkInputs = [ pytestCheckHook mock ];