Unverified Commit 4787eebe authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

Merge pull request #331627 from max-privatevoid/pr-s3ql-5.2.1

s3ql: 5.1.3 -> 5.2.1
parents 280d8797 ab8e7df7
Loading
Loading
Loading
Loading
+10 −2
Original line number Diff line number Diff line
@@ -4,18 +4,19 @@
  python3,
  sqlite,
  which,
  nix-update-script,
}:

python3.pkgs.buildPythonApplication rec {
  pname = "s3ql";
  version = "5.1.3";
  version = "5.2.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "s3ql";
    repo = "s3ql";
    rev = "refs/tags/s3ql-${version}";
    hash = "sha256-8vGW0Kl6hDTY+9mTnm2S659PZ/9gl90d2tXxKIIFimo=";
    hash = "sha256-85J0ymGe9V6f95Ycdq84dY+UiybhPdFXZzuIBb1nD5c=";
  };

  build-system = with python3.pkgs; [ setuptools ];
@@ -52,6 +53,13 @@ python3.pkgs.buildPythonApplication rec {

  pytestFlagsArray = [ "tests/" ];

  passthru.updateScript = nix-update-script {
    extraArgs = [
      "--version-regex"
      "s3ql-([0-9.]+)"
    ];
  };

  meta = with lib; {
    description = "Full-featured file system for online data storage";
    homepage = "https://github.com/s3ql/s3ql/";