2.0.0-rc2 -> 2.0.0, add CardDAV support
This commit is contained in:
parent
d409516501
commit
ff42e0ae7f
@ -1,28 +1,38 @@
|
|||||||
{ stdenv, fetchurl, python2, python2Packages, makeWrapper }:
|
{ stdenv, fetchurl, python2, python2Packages, makeWrapper }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "2.0.0-rc2";
|
version = "2.0.0";
|
||||||
name = "ASynK-${version}";
|
name = "ASynK-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
name = "${name}.tar.gz";
|
name = "${name}.tar.gz";
|
||||||
url = "https://github.com/skarra/ASynK/archive/v${version}.tar.gz";
|
url = "https://github.com/skarra/ASynK/archive/v${version}.tar.gz";
|
||||||
sha256 = "14s53ijn9fpxr490ypnn92zk6h5rdadf7j3z98rah1h7l659qi1b";
|
sha256 = "1bp30437mnls0kzm0525p3bg5nw9alpqrqhw186f6zp9i4y5znp1";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = with python2Packages; [ python2 makeWrapper tornado requests dateutil ];
|
propagatedBuildInputs = with python2Packages;
|
||||||
|
[ python2 makeWrapper tornado requests dateutil
|
||||||
|
vobject gdata caldavclientlibrary-asynk ];
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out/bin
|
mkdir -p $out/bin $out/lib
|
||||||
cp asynk.py $out/bin/
|
cp asynk.py $out/bin/
|
||||||
cp state.init.json $out/
|
cp state.init.json $out/
|
||||||
cp -R config $out/
|
cp -R config $out/
|
||||||
cp -R lib $out/
|
cp lib/*.py $out/lib # */
|
||||||
|
cp -R lib/s $out/lib/
|
||||||
cp -R asynk $out/
|
cp -R asynk $out/
|
||||||
|
|
||||||
substituteInPlace $out/bin/asynk.py \
|
substituteInPlace $out/bin/asynk.py \
|
||||||
--replace "ASYNK_BASE_DIR = os.path.dirname(os.path.abspath(__file__))" "ASYNK_BASE_DIR = \"$out\""
|
--replace "ASYNK_BASE_DIR = os.path.dirname(os.path.abspath(__file__))" "ASYNK_BASE_DIR = \"$out\""
|
||||||
|
|
||||||
|
for file in `find $out/asynk -type f`; do
|
||||||
|
# Oh yeah, tab characters!
|
||||||
|
substituteInPlace $file \
|
||||||
|
--replace 'from vobject import vobject' 'from vobject import *' \
|
||||||
|
--replace 'from vobject import vobject' 'from vobject import *'
|
||||||
|
done
|
||||||
|
|
||||||
wrapProgram "$out/bin/asynk.py" \
|
wrapProgram "$out/bin/asynk.py" \
|
||||||
--prefix PYTHONPATH : "$PYTHONPATH"
|
--prefix PYTHONPATH : "$PYTHONPATH"
|
||||||
'';
|
'';
|
||||||
|
@ -809,6 +809,31 @@ let
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
caldavclientlibrary-asynk = buildPythonPackage rec {
|
||||||
|
version = "asynkdev";
|
||||||
|
name = "caldavclientlibrary-asynk-${version}";
|
||||||
|
|
||||||
|
src = pkgs.fetchgit {
|
||||||
|
url = "https://github.com/skarra/CalDAVClientLibrary.git";
|
||||||
|
rev = "06699b08190d50cc2636b921a654d67db0a967d1";
|
||||||
|
sha256 = "1i6is7lv4v9by4panrd9w63m4xsmhwlp3rq4jjj3azwg5jm10940";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "CalDAVCLientLibrary is a Python library and tool for CalDAV";
|
||||||
|
|
||||||
|
longDescription = ''
|
||||||
|
CalDAVCLientLibrary is a Python library and tool for CalDAV.
|
||||||
|
|
||||||
|
This package is the unofficial CalDAVCLientLibrary Python
|
||||||
|
library maintained by the author of Asynk and is needed for
|
||||||
|
that package.
|
||||||
|
'';
|
||||||
|
|
||||||
|
homepage = https://github.com/skarra/CalDAVClientLibrary/tree/asynkdev/;
|
||||||
|
maintainers = with maintainers; [ pjones ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
bedup = buildPythonPackage rec {
|
bedup = buildPythonPackage rec {
|
||||||
name = "bedup-20140413";
|
name = "bedup-20140413";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user