f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
36 lines
1.1 KiB
Nix
36 lines
1.1 KiB
Nix
{ stdenv, fetchurl, python3Packages, sqlite, which }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
name = "${pname}-${version}";
|
|
pname = "s3ql";
|
|
version = "2.21";
|
|
|
|
src = fetchurl {
|
|
url = "https://bitbucket.org/nikratio/${pname}/downloads/${name}.tar.bz2";
|
|
sha256 = "1mifmxbsxc2rcrydk2vs5cjfd5r0510q5y7rmavlzi8grpcqdf3d";
|
|
};
|
|
|
|
buildInputs = [ which ]; # tests will fail without which
|
|
propagatedBuildInputs = with python3Packages; [
|
|
sqlite apsw pycrypto requests 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
|
|
'';
|
|
|
|
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.linux;
|
|
};
|
|
}
|