nixpkgs/pkgs/development/python-modules/vobject/default.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

33 lines
620 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
isPyPy,
python,
python-dateutil,
}:
buildPythonPackage rec {
version = "0.9.7";
format = "setuptools";
pname = "vobject";
src = fetchPypi {
inherit pname version;
hash = "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 = [ ];
};
}