mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
s3ql: 5.1.3 -> 5.2.1
This commit is contained in:
parent
3863a5e634
commit
ab8e7df750
|
@ -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/";
|
||||
|
|
Loading…
Reference in a new issue