s3ql: 2.13 -> 2.17.1

This commit is contained in:
Eelco Dolstra
2016-03-19 21:00:57 +01:00
parent 497c828611
commit 455ec64d11
2 changed files with 6 additions and 6 deletions

View File

@@ -3,21 +3,21 @@
python3Packages.buildPythonApplication rec {
name = "${pname}-${version}";
pname = "s3ql";
version = "2.13";
version = "2.17.1";
src = fetchurl {
url = "https://bitbucket.org/nikratio/${pname}/downloads/${name}.tar.bz2";
sha256 = "0bxps1iq0rv7bg2b8mys6zyjp912knm6zmafhid1jhsv3xyby4my";
sha256 = "049vpvvkyia7v4v97rg2l01n43shrdxc1ik38bmjb2q4fvsh1pgx";
};
propagatedBuildInputs = with python3Packages;
[ sqlite apsw pycrypto requests defusedxml dugong llfuse ];
[ sqlite apsw pycrypto requests2 defusedxml dugong llfuse ];
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 ];
platforms = platforms.unix;
platforms = platforms.linux;
};
}