2019-08-13 11:56:49 +02:00
|
|
|
{ stdenv, fetchFromGitHub, python3Packages, sqlite, which }:
|
2015-05-08 12:10:40 +02:00
|
|
|
|
2016-02-19 13:12:11 +01:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2015-05-08 12:10:40 +02:00
|
|
|
pname = "s3ql";
|
2019-10-13 17:36:34 +02:00
|
|
|
version = "3.3";
|
2015-05-08 12:10:40 +02:00
|
|
|
|
2019-08-13 11:56:49 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = pname;
|
|
|
|
repo = pname;
|
|
|
|
rev = "release-${version}";
|
2019-10-13 17:36:34 +02:00
|
|
|
sha256 = "1rb1y1hl6qgwpkfc85ivkk0l0f5dh8skpfaipnvndn73mlya96mk";
|
2015-05-08 12:10:40 +02:00
|
|
|
};
|
|
|
|
|
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; [
|
2017-05-07 12:55:45 +02:00
|
|
|
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
|
|
|
|
'';
|
2015-05-08 12:10:40 +02:00
|
|
|
|
|
|
|
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/";
|
2015-05-08 12:10:40 +02:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ rushmorem ];
|
2016-03-19 21:00:57 +01:00
|
|
|
platforms = platforms.linux;
|
2015-05-08 12:10:40 +02:00
|
|
|
};
|
|
|
|
}
|