mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
pycarddav + vobject
This commit is contained in:
parent
130f66b683
commit
a8458cb091
@ -7442,6 +7442,46 @@ let
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
vobject = buildPythonPackage rec {
|
||||||
|
version = "0.8.1c";
|
||||||
|
name = "vobject-${version}";
|
||||||
|
|
||||||
|
src = pkgs.fetchurl {
|
||||||
|
url = "https://pypi.python.org/packages/source/v/vobject/vobject-${version}.tar.gz";
|
||||||
|
sha256 = "1xanqn7rn96841s3lim5lnx5743gc4kyfg4ggj1ys5r0gw8i6har";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = with self; [ dateutil ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Module for reading vCard and vCalendar files";
|
||||||
|
homepage = http://vobject.skyhouseconsulting.com/;
|
||||||
|
license = licenses.apache;
|
||||||
|
maintainers = [ maintainers.DamienCassou ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
pycarddav = buildPythonPackage rec {
|
||||||
|
version = "0.7.0";
|
||||||
|
name = "pycarddav-${version}";
|
||||||
|
|
||||||
|
src = pkgs.fetchurl {
|
||||||
|
url = "https://pypi.python.org/packages/source/p/pyCardDAV/pyCardDAV-${version}.tar.gz";
|
||||||
|
sha256 = "0avkrcpisfvhz103v7vmq2jd83hvmpqrb4mlbx6ikkk1wcvclsx8";
|
||||||
|
};
|
||||||
|
|
||||||
|
disabled = isPy3k;
|
||||||
|
|
||||||
|
propagatedBuildInputs = with self; [ sqlite3 vobject lxml requests urwid pyxdg ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Command-line interface carddav client";
|
||||||
|
homepage = http://lostpackets.de/pycarddav;
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = [ maintainers.DamienCassou ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
pycosat = pythonPackages.buildPythonPackage rec {
|
pycosat = pythonPackages.buildPythonPackage rec {
|
||||||
name = "pycosat-0.6.0";
|
name = "pycosat-0.6.0";
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user