ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / vobject / default.nix
blob30f84150283ca8e034cd2fab2d9369b90938d7f7
1 { lib, buildPythonPackage, fetchPypi, isPyPy, python, python-dateutil }:
3 buildPythonPackage rec {
4   version = "0.9.6.1";
5   pname = "vobject";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "96512aec74b90abb71f6b53898dd7fe47300cc940104c4f79148f0671f790101";
10   };
12   disabled = isPyPy;
14   propagatedBuildInputs = [ python-dateutil ];
16   checkPhase = "${python.interpreter} tests.py";
18   meta = with lib; {
19     description = "Module for reading vCard and vCalendar files";
20     homepage = "http://eventable.github.io/vobject/";
21     license = licenses.asl20;
22     maintainers = with maintainers; [ ];
23   };