mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
25 lines
601 B
Nix
25 lines
601 B
Nix
{ lib, buildPythonPackage, fetchPypi, isPyPy, python, dateutil }:
|
|
|
|
buildPythonPackage rec {
|
|
version = "0.9.6.1";
|
|
pname = "vobject";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "96512aec74b90abb71f6b53898dd7fe47300cc940104c4f79148f0671f790101";
|
|
};
|
|
|
|
disabled = isPyPy;
|
|
|
|
propagatedBuildInputs = [ 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; [ ];
|
|
};
|
|
}
|