nixpkgs/pkgs/development/python-modules/caldav/default.nix

22 lines
590 B
Nix
Raw Normal View History

2019-04-29 09:49:35 +01:00
{ lib, buildPythonPackage, fetchPypi
2019-08-25 12:20:26 +01:00
, tzlocal, requests, vobject, lxml, nose }:
2019-04-29 09:49:35 +01:00
buildPythonPackage rec {
pname = "caldav";
2019-05-30 07:49:48 +01:00
version = "0.6.1";
2019-04-29 09:49:35 +01:00
2019-08-25 12:20:26 +01:00
propagatedBuildInputs = [ tzlocal requests vobject lxml nose ];
2019-04-29 09:49:35 +01:00
src = fetchPypi {
inherit pname version;
2019-05-30 07:49:48 +01:00
sha256 = "eddb7f4e6a3eb5f02eaa2227817a53ac4372d4c4d51876536f4c6f00282f569e";
2019-04-29 09:49:35 +01:00
};
meta = with lib; {
description = "This project is a CalDAV (RFC4791) client library for Python.";
homepage = "https://pythonhosted.org/caldav/";
license = licenses.asl20;
maintainers = with maintainers; [ marenz ];
};
}