nixpkgs/pkgs/tools/misc/vdirsyncer/default.nix

81 lines
2.6 KiB
Nix
Raw Normal View History

{ stdenv, python3Packages, fetchFromGitHub, fetchpatch, rustPlatform, pkgconfig, openssl, Security }:
2015-01-30 15:39:51 +00:00
# Packaging documentation at:
# https://github.com/untitaker/vdirsyncer/blob/master/docs/packaging.rst
python3Packages.buildPythonApplication rec {
version = "unstable-2018-08-05";
2017-12-25 14:20:57 +00:00
pname = "vdirsyncer";
name = "${pname}-${version}";
src = fetchFromGitHub {
owner = "pimutils";
repo = pname;
rev = "ac45cf144b0ceb72cc2a9f454808688f3ac9ba4f";
sha256 = "0hqsjdpgvm7d34q5b2hzmrzfxk43ald1bx22mvgg559kw1ck54s9";
2015-01-30 15:39:51 +00:00
};
2017-12-25 14:20:57 +00:00
native = rustPlatform.buildRustPackage {
name = "${name}-native";
2017-12-25 14:20:57 +00:00
inherit src;
sourceRoot = "source/rust";
cargoSha256 = "02fxxw4vr6rpdbslrc9c1zhzs704bw7i40akrmh5cxl26rsffdgk";
buildInputs = [ pkgconfig openssl ] ++ stdenv.lib.optional stdenv.isDarwin Security;
2017-12-25 14:20:57 +00:00
};
2015-01-30 15:39:51 +00:00
propagatedBuildInputs = with python3Packages; [
2015-10-28 16:11:40 +00:00
click click-log click-threading
2015-01-30 15:39:51 +00:00
requests_toolbelt
requests
requests_oauthlib # required for google oauth sync
2015-01-30 15:39:51 +00:00
atomicwrites
2017-12-25 14:20:57 +00:00
milksnake
shippai
2015-01-30 15:39:51 +00:00
];
nativeBuildInputs = with python3Packages; [ setuptools_scm ];
2017-12-25 14:20:57 +00:00
checkInputs = with python3Packages; [ hypothesis pytest pytest-localserver pytest-subtesthack ];
2017-12-25 14:20:57 +00:00
patches = [
# Fixes for hypothesis: https://github.com/pimutils/vdirsyncer/pull/779
(fetchpatch {
url = https://github.com/pimutils/vdirsyncer/commit/22ad88a6b18b0979c5d1f1d610c1d2f8f87f4b89.patch;
sha256 = "0dbzj6jlxhdidnm3i21a758z83sdiwzhpd45pbkhycfhgmqmhjpl";
})
(fetchpatch {
url = https://github.com/pimutils/vdirsyncer/commit/29417235321c249c65904bc7948b066ef5683aee.patch;
sha256 = "0zvr0y88gm3vprjcdzs4m151laa9qhkyi61rvrfdjmf42fwhbm80";
})
];
2017-12-25 14:20:57 +00:00
postPatch = ''
2019-02-25 10:05:32 +00:00
# Invalid argument: 'perform_health_check' is not a valid setting
substituteInPlace tests/conftest.py \
--replace "perform_health_check=False" ""
substituteInPlace tests/unit/test_repair.py \
--replace $'@settings(perform_health_check=False) # Using the random module for UIDs\n' ""
# for setuptools_scm:
echo 'Version: ${version}' >PKG-INFO
sed -i 's/spec.add_external_build(cmd=cmd/spec.add_external_build(cmd="true"/g' setup.py
2017-12-25 14:20:57 +00:00
'';
preBuild = ''
mkdir -p rust/target/release
2018-10-06 16:30:44 +00:00
ln -s ${native}/lib/libvdirsyncer_rustext* rust/target/release/
2017-12-25 14:20:57 +00:00
'';
checkPhase = ''
rm -rf vdirsyncer
make DETERMINISTIC_TESTS=true test
'';
2016-02-18 15:48:59 +00:00
meta = with stdenv.lib; {
homepage = https://github.com/pimutils/vdirsyncer;
2015-01-30 15:39:51 +00:00
description = "Synchronize calendars and contacts";
maintainers = with maintainers; [ matthiasbeyer ];
license = licenses.mit;
2015-01-30 15:39:51 +00:00
};
}