vcard: 0.16.1 -> 1.0.0

This commit is contained in:
Anton Mosich
2025-04-11 17:57:04 +02:00
parent f3f1f9fd03
commit eafc0af8b7
@@ -4,27 +4,24 @@
fetchFromGitLab,
pytestCheckHook,
python-dateutil,
pythonAtLeast,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "vcard";
version = "0.16.1";
version = "1.0.0";
pyproject = true;
disabled = pythonOlder "3.8" || pythonAtLeast "3.13";
disabled = pythonOlder "3.8";
src = fetchFromGitLab {
owner = "engmark";
repo = "vcard";
rev = "refs/tags/v${version}";
hash = "sha256-cz1WF8LQsyJwcVKMSWmFb6OB/JWyfc2FgcOT3jJ45Cg=";
tag = "v${version}";
hash = "sha256-c6lj4sCXlQd5Bh5RLuZUIaTirVHtkRfYUAUtZI+1MeI=";
};
pythonRelaxDeps = [ "python-dateutil" ];
build-system = [ setuptools ];
dependencies = [ python-dateutil ];