patroni: move to by-name and add updateScript

This commit is contained in:
Adam Stephens 2024-10-18 23:38:00 -04:00
parent 6125359681
commit dc388874e2
No known key found for this signature in database
2 changed files with 9 additions and 8 deletions

View File

@ -1,10 +1,11 @@
{ 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.2";
@ -15,7 +16,7 @@ pythonPackages.buildPythonApplication rec {
sha256 = "sha256-ykTg5Zd4dU1D6dnj6QbNfGUXrSteKrQjV2hpIPhXGLU="; sha256 = "sha256-ykTg5Zd4dU1D6dnj6QbNfGUXrSteKrQjV2hpIPhXGLU=";
}; };
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

@ -24865,8 +24865,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 {};