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.0 KiB
Nix
Raw Normal View History

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