Unverified Commit 2e0b7d58 authored by misuzu's avatar misuzu Committed by GitHub
Browse files

barman: add distutils to dependencies (#366597)

parents 7629ef7f 956c4042
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -3,6 +3,7 @@
  stdenv,
  fetchFromGitHub,
  python3Packages,
  versionCheckHook,
}:

python3Packages.buildPythonApplication rec {
@@ -30,6 +31,7 @@ python3Packages.buildPythonApplication rec {
    azure-mgmt-compute
    azure-storage-blob
    boto3
    distutils
    google-cloud-compute
    google-cloud-storage
    grpcio
@@ -41,6 +43,7 @@ python3Packages.buildPythonApplication rec {
  nativeCheckInputs = with python3Packages; [
    mock
    pytestCheckHook
    versionCheckHook
  ];

  disabledTests =
@@ -57,6 +60,7 @@ python3Packages.buildPythonApplication rec {
    description = "Backup and Recovery Manager for PostgreSQL";
    homepage = "https://www.pgbarman.org/";
    changelog = "https://github.com/EnterpriseDB/barman/blob/release/${version}/NEWS";
    mainProgram = "barman";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ freezeboy ];
    platforms = platforms.unix;