Unverified Commit 02fb1903 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

python313Packages.pgspecial: skip tests on darwin as postgresqlTestHook is not...

python313Packages.pgspecial: skip tests on darwin as postgresqlTestHook is not available there, adopt, pgcli: update maintainers (#439828)
parents 3bb3bf51 b5950c56
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -73,7 +73,6 @@ buildPythonPackage rec {
    changelog = "https://github.com/dbcli/pgcli/raw/v${version}/changelog.rst";
    license = licenses.bsd3;
    maintainers = with maintainers; [
      dywedir
      SuperSandro2000
    ];
  };
+5 −1
Original line number Diff line number Diff line
@@ -11,6 +11,7 @@
  setuptools,
  setuptools-scm,
  sqlparse,
  stdenv,
}:

buildPythonPackage rec {
@@ -34,6 +35,9 @@ buildPythonPackage rec {
    psycopg
  ];

  # postgresqlTestHook is not available on Darwin
  doCheck = stdenv.hostPlatform.isLinux;

  nativeCheckInputs = [
    configobj
    pytestCheckHook
@@ -59,6 +63,6 @@ buildPythonPackage rec {
    homepage = "https://github.com/dbcli/pgspecial";
    changelog = "https://github.com/dbcli/pgspecial/releases/tag/v${version}";
    license = licenses.bsd3;
    maintainers = [ ];
    maintainers = [ lib.maintainers.SuperSandro2000 ];
  };
}