pythonPackages.pycarddav: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov
2018-10-25 22:11:08 -04:00
committed by Frederik Rietdijk
parent 41a0ab047d
commit f65a963c50
2 changed files with 32 additions and 20 deletions

View File

@@ -0,0 +1,31 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
, isPyPy
, vobject
, lxml
, requests
, urwid
, pyxdg
}:
buildPythonPackage rec {
version = "0.7.0";
pname = "pycarddav";
disabled = isPy3k || isPyPy;
src = fetchPypi {
inherit pname version;
sha256 = "0avkrcpisfvhz103v7vmq2jd83hvmpqrb4mlbx6ikkk1wcvclsx8";
};
propagatedBuildInputs = [ vobject lxml requests urwid pyxdg ];
meta = with stdenv.lib; {
description = "Command-line interface carddav client";
homepage = http://lostpackets.de/pycarddav;
license = licenses.mit;
};
}