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;
};
}

View File

@ -11227,11 +11227,11 @@ in modules // {
};
llfuse = buildPythonPackage rec {
name = "llfuse-0.40";
name = "llfuse-1.0";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/l/llfuse/${name}.tar.bz2";
sha256 = "0mx87n6j2g63mgiimjqn0gj6jgqfdkc04xkxc56r1azjlqji32zf";
md5 = "6e71af191381da135a222e3c0e7569a1";
};
buildInputs = [ pkgs.pkgconfig pkgs.fuse pkgs.attr ];