nixpkgs/pkgs/tools/backup/s3ql/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
1 KiB
Nix
Raw Normal View History

{ lib, fetchFromGitHub, python3Packages, sqlite, which }:
python3Packages.buildPythonApplication rec {
pname = "s3ql";
2022-07-30 09:43:09 +02:00
version = "4.0.0";
2019-08-13 11:56:49 +02:00
src = fetchFromGitHub {
owner = pname;
repo = pname;
2022-07-30 09:43:09 +02:00
rev = "refs/tags/release-${version}";
sha256 = "sha256-7N09b7JwMPliuyv2fEy1gQYaFCMSSvajOBPhNL3DQsg=";
};
2021-05-16 02:41:15 +02:00
checkInputs = [ which ] ++ (with python3Packages; [ cython pytest pytest-trio ]);
2017-03-16 11:12:19 +01:00
propagatedBuildInputs = with python3Packages; [
2021-05-16 02:41:15 +02:00
sqlite apsw pycrypto requests defusedxml dugong
google-auth google-auth-oauthlib trio pyfuse3
2017-03-16 11:12:19 +01:00
];
preBuild = ''
${python3Packages.python.interpreter} ./setup.py build_cython build_ext --inplace
'';
checkPhase = ''
2019-08-13 11:56:49 +02:00
# Removing integration tests
rm tests/t{4,5,6}_*
2017-03-16 11:12:19 +01:00
pytest tests
'';
meta = with lib; {
description = "A full-featured file system for online data storage";
2019-08-13 11:56:49 +02:00
homepage = "https://github.com/s3ql/s3ql/";
license = licenses.gpl3;
maintainers = with maintainers; [ rushmorem ];
2016-03-19 21:00:57 +01:00
platforms = platforms.linux;
};
}