s3ql: 5.1.3 -> 5.2.1

This commit is contained in:
Max
2024-08-02 00:29:54 +02:00
committed by Florian Brandes
parent 1d66aac7a0
commit 5c679ff99d

View File

@@ -4,18 +4,19 @@
python3, python3,
sqlite, sqlite,
which, which,
nix-update-script,
}: }:
python3.pkgs.buildPythonApplication rec { python3.pkgs.buildPythonApplication rec {
pname = "s3ql"; pname = "s3ql";
version = "5.1.3"; version = "5.2.1";
pyproject = true; pyproject = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "s3ql"; owner = "s3ql";
repo = "s3ql"; repo = "s3ql";
rev = "refs/tags/s3ql-${version}"; rev = "refs/tags/s3ql-${version}";
hash = "sha256-8vGW0Kl6hDTY+9mTnm2S659PZ/9gl90d2tXxKIIFimo="; hash = "sha256-85J0ymGe9V6f95Ycdq84dY+UiybhPdFXZzuIBb1nD5c=";
}; };
build-system = with python3.pkgs; [ setuptools ]; build-system = with python3.pkgs; [ setuptools ];
@@ -52,6 +53,13 @@ python3.pkgs.buildPythonApplication rec {
pytestFlagsArray = [ "tests/" ]; pytestFlagsArray = [ "tests/" ];
passthru.updateScript = nix-update-script {
extraArgs = [
"--version-regex"
"s3ql-([0-9.]+)"
];
};
meta = with lib; { meta = with lib; {
description = "Full-featured file system for online data storage"; description = "Full-featured file system for online data storage";
homepage = "https://github.com/s3ql/s3ql/"; homepage = "https://github.com/s3ql/s3ql/";