patroni: 4.0.2 -> 4.0.3 (#349685)

This commit is contained in:
Adam C. Stephens 2024-10-20 21:00:18 -04:00 committed by GitHub
commit 1106ec548b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 11 additions and 10 deletions

View File

@ -1,21 +1,22 @@
{ lib { lib
, pythonPackages , python3Packages
, fetchFromGitHub , fetchFromGitHub
, nixosTests , nixosTests
, nix-update-script
}: }:
pythonPackages.buildPythonApplication rec { python3Packages.buildPythonApplication rec {
pname = "patroni"; pname = "patroni";
version = "4.0.2"; version = "4.0.3";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "zalando"; owner = "zalando";
repo = pname; repo = pname;
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
sha256 = "sha256-ykTg5Zd4dU1D6dnj6QbNfGUXrSteKrQjV2hpIPhXGLU="; sha256 = "sha256-urNTxaipM4wD+1fp7EFdT7/FGLq86O1nOfst7JyX0fc=";
}; };
propagatedBuildInputs = with pythonPackages; [ propagatedBuildInputs = with python3Packages; [
boto3 boto3
click click
consul consul
@ -34,7 +35,7 @@ pythonPackages.buildPythonApplication rec {
ydiff ydiff
]; ];
nativeCheckInputs = with pythonPackages; [ nativeCheckInputs = with python3Packages; [
flake8 flake8
mock mock
pytestCheckHook pytestCheckHook
@ -47,8 +48,10 @@ pythonPackages.buildPythonApplication rec {
pythonImportsCheck = [ "patroni" ]; pythonImportsCheck = [ "patroni" ];
passthru.tests = { passthru = {
patroni = nixosTests.patroni; tests.patroni = nixosTests.patroni;
updateScript = nix-update-script { };
}; };
meta = with lib; { meta = with lib; {

View File

@ -24846,8 +24846,6 @@ with pkgs;
vmfs-tools = callPackage ../tools/filesystems/vmfs-tools { }; vmfs-tools = callPackage ../tools/filesystems/vmfs-tools { };
patroni = callPackage ../servers/sql/patroni { pythonPackages = python3Packages; };
pgbouncer = callPackage ../servers/sql/pgbouncer { }; pgbouncer = callPackage ../servers/sql/pgbouncer { };
pgcat = callPackage ../servers/sql/pgcat {}; pgcat = callPackage ../servers/sql/pgcat {};