Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

pgcli: 4.0.1 -> 4.1.0 #319650

Merged
merged 1 commit into from
Jun 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions pkgs/development/python-modules/pgcli/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
keyring,
pendulum,
pytestCheckHook,
setuptools,
sshtunnel,
mock,
}:
Expand All @@ -23,12 +24,12 @@
# integrating with ipython-sql
buildPythonPackage rec {
pname = "pgcli";
version = "4.0.1";
format = "setuptools";
version = "4.1.0";
pyproject = true;

src = fetchPypi {
inherit pname version;
hash = "sha256-8v7qIJnOGtXoqdXZOw7a9g3GHpeyG3XpHZcjk5zlO9I=";
hash = "sha256-P9Fsi1G9AUX/YYwscyZLzYVLqGaqIG1PB2hR9kG5shU=";
};

propagatedBuildInputs = [
Expand All @@ -46,12 +47,16 @@ buildPythonPackage rec {
sshtunnel
];

nativeBuildInputs = [ setuptools ];
nativeCheckInputs = [
pytestCheckHook
mock
];

disabledTests = lib.optionals stdenv.isDarwin [ "test_application_name_db_uri" ];
disabledTests = [
SuperSandro2000 marked this conversation as resolved.
Show resolved Hide resolved
# requires running postgres
"test_application_name_in_env"
] ++ lib.optionals stdenv.isDarwin [ "test_application_name_db_uri" ];

meta = with lib; {
description = "Command-line interface for PostgreSQL";
Expand Down