Commit 68bf1f12 authored by Anthony ROUSSEL's avatar Anthony ROUSSEL
Browse files

python311Packages.swift: 2.33.0 -> 2.34.0

parent 64f6ecc7
Loading
Loading
Loading
Loading
+12 −10
Original line number Diff line number Diff line
@@ -25,12 +25,12 @@

buildPythonPackage rec {
  pname = "swift";
  version = "2.33.0";
  format = "setuptools";
  version = "2.34.0";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-4TlJcquK8MC9zQfLKmb88B5xHje1kbPD2jSLiR+N8hs=";
    hash = "sha256-ZvdWWvPUdZIEadxV0nhqgTXhgJJu+hD1LnYCAP+9gpM=";
  };

  postPatch = ''
@@ -38,9 +38,11 @@ buildPythonPackage rec {
    rm test/functional/s3api/{__init__.py,s3_test_client.py}
  '';

  nativeBuildInputs = [
    installShellFiles
  nativeBuildInputs = [ installShellFiles ];

  build-system = [
    pbr
    setuptools
  ];

  propagatedBuildInputs = [
@@ -57,17 +59,17 @@ buildPythonPackage rec {
    xattr
  ];

  postInstall = ''
    installManPage doc/manpages/*
  '';

  nativeCheckInputs = [
  dependencies = [
    boto3
    mock
    stestr
    swiftclient
  ];

  postInstall = ''
    installManPage doc/manpages/*
  '';

  # a lot of tests currently fail while establishing a connection
  doCheck = false;