pythonPackages.pycarddav: refactor move to python-modules
This commit is contained in:
committed by
Frederik Rietdijk
parent
41a0ab047d
commit
f65a963c50
31
pkgs/development/python-modules/pycarddav/default.nix
Normal file
31
pkgs/development/python-modules/pycarddav/default.nix
Normal 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;
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user