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

38 lines
1 KiB
Nix
Raw Normal View History

2019-08-13 11:56:49 +02:00
{ stdenv, fetchFromGitHub, python3Packages, sqlite, which }:
python3Packages.buildPythonApplication rec {
pname = "s3ql";
version = "3.3";
2019-08-13 11:56:49 +02:00
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "release-${version}";
sha256 = "1rb1y1hl6qgwpkfc85ivkk0l0f5dh8skpfaipnvndn73mlya96mk";
};
2019-08-13 11:56:49 +02:00
checkInputs = [ which ] ++ (with python3Packages; [ cython pytest ]);
2017-03-16 11:12:19 +01:00
propagatedBuildInputs = with python3Packages; [
sqlite apsw pycrypto requests defusedxml dugong llfuse
2019-08-13 11:56:49 +02:00
cython pytest pytest-catchlog google_auth google-auth-oauthlib
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 stdenv.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;
};
}