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
, pythonPackages
, python3Packages
, fetchFromGitHub
, nixosTests
, nix-update-script
}:
pythonPackages.buildPythonApplication rec {
python3Packages.buildPythonApplication rec {
pname = "patroni";
version = "4.0.2";
@ -15,7 +16,7 @@ pythonPackages.buildPythonApplication rec {
sha256 = "sha256-ykTg5Zd4dU1D6dnj6QbNfGUXrSteKrQjV2hpIPhXGLU=";
};
propagatedBuildInputs = with pythonPackages; [
propagatedBuildInputs = with python3Packages; [
boto3
click
consul
@ -34,7 +35,7 @@ pythonPackages.buildPythonApplication rec {
ydiff
];
nativeCheckInputs = with pythonPackages; [
nativeCheckInputs = with python3Packages; [
flake8
mock
pytestCheckHook
@ -47,8 +48,10 @@ pythonPackages.buildPythonApplication rec {
pythonImportsCheck = [ "patroni" ];
passthru.tests = {
patroni = nixosTests.patroni;
passthru = {
tests.patroni = nixosTests.patroni;
updateScript = nix-update-script { };
};
meta = with lib; {

View File

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