2017-03-16 10:12:19 +00:00
|
|
|
{ stdenv, fetchurl, python3Packages, sqlite, which }:
|
2015-05-08 10:10:40 +00:00
|
|
|
|
2016-02-19 12:12:11 +00:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2015-05-08 10:10:40 +00:00
|
|
|
name = "${pname}-${version}";
|
|
|
|
pname = "s3ql";
|
2017-03-16 10:12:19 +00:00
|
|
|
version = "2.21";
|
2015-05-08 10:10:40 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://bitbucket.org/nikratio/${pname}/downloads/${name}.tar.bz2";
|
2017-03-16 10:12:19 +00:00
|
|
|
sha256 = "1mifmxbsxc2rcrydk2vs5cjfd5r0510q5y7rmavlzi8grpcqdf3d";
|
2015-05-08 10:10:40 +00:00
|
|
|
};
|
|
|
|
|
2017-03-16 10:12:19 +00:00
|
|
|
buildInputs = [ which ]; # tests will fail without which
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
|
|
sqlite apsw pycrypto requests2 defusedxml dugong llfuse
|
|
|
|
cython pytest pytest-catchlog
|
|
|
|
];
|
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
# https://bitbucket.org/nikratio/s3ql/issues/118/no-module-named-s3qldeltadump-running#comment-16951851
|
|
|
|
${python3Packages.python.interpreter} ./setup.py build_cython build_ext --inplace
|
|
|
|
'';
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
pytest tests
|
|
|
|
'';
|
2015-05-08 10:10:40 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A full-featured file system for online data storage";
|
|
|
|
homepage = "https://bitbucket.org/nikratio/s3ql";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ rushmorem ];
|
2016-03-19 20:00:57 +00:00
|
|
|
platforms = platforms.linux;
|
2015-05-08 10:10:40 +00:00
|
|
|
};
|
|
|
|
}
|