pgcli: 3.3.1 -> 3.4.1

This commit is contained in:
Sandro Jäckel 2022-04-08 16:26:20 +02:00
parent f5cd655f16
commit 22aa50baf4
No known key found for this signature in database
GPG key ID: B1763F8651144063

View file

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