depot/third_party/nixpkgs/pkgs/development/python-modules/vobject/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

25 lines
627 B
Nix

{ lib, buildPythonPackage, fetchPypi, isPyPy, python, python-dateutil }:
buildPythonPackage rec {
version = "0.9.7";
format = "setuptools";
pname = "vobject";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-q3J7+B3oiYStpcEfBm8eFkmQPT49fskfHOloFyr9UlY=";
};
disabled = isPyPy;
propagatedBuildInputs = [ python-dateutil ];
checkPhase = "${python.interpreter} tests.py";
meta = with lib; {
description = "Module for reading vCard and vCalendar files";
homepage = "http://eventable.github.io/vobject/";
license = licenses.asl20;
maintainers = with maintainers; [ ];
};
}