vcard: 0.16.1 -> 1.0.0 (#397614)

This commit is contained in:
Thiago Kenji Okada
2025-04-18 22:59:28 +01:00
committed by GitHub
@@ -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 ];