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

38 lines
1 KiB
Nix
Raw Normal View History

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