My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/vobject/default.nix

24 lines
617 B

{ lib, buildPythonPackage, fetchPypi, isPyPy, python, python-dateutil }:
buildPythonPackage rec {
version = "0.9.6.1";
pname = "vobject";
src = fetchPypi {
inherit pname version;
sha256 = "96512aec74b90abb71f6b53898dd7fe47300cc940104c4f79148f0671f790101";
};
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; [ ];
};
}