2021-07-03 12:37:24 +01:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, isPyPy, python, python-dateutil }:
|
2018-04-06 14:13:18 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2018-07-22 11:23:54 +01:00
|
|
|
version = "0.9.6.1";
|
2018-04-06 14:13:18 +01:00
|
|
|
pname = "vobject";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-07-22 11:23:54 +01:00
|
|
|
sha256 = "96512aec74b90abb71f6b53898dd7fe47300cc940104c4f79148f0671f790101";
|
2018-04-06 14:13:18 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
disabled = isPyPy;
|
|
|
|
|
2021-07-03 12:37:24 +01:00
|
|
|
propagatedBuildInputs = [ python-dateutil ];
|
2018-04-06 14:13:18 +01:00
|
|
|
|
|
|
|
checkPhase = "${python.interpreter} tests.py";
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Module for reading vCard and vCalendar files";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://eventable.github.io/vobject/";
|
2018-04-06 14:13:18 +01:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ ];
|
|
|
|
};
|
|
|
|
}
|