From eafc0af8b7fc6427bcd56bf584e6f7cc5b6ad6bd Mon Sep 17 00:00:00 2001 From: Anton Mosich Date: Thu, 10 Apr 2025 10:09:11 +0200 Subject: [PATCH] vcard: 0.16.1 -> 1.0.0 --- pkgs/development/python-modules/vcard/default.nix | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/pkgs/development/python-modules/vcard/default.nix b/pkgs/development/python-modules/vcard/default.nix index 16568030e235..a039468de570 100644 --- a/pkgs/development/python-modules/vcard/default.nix +++ b/pkgs/development/python-modules/vcard/default.nix @@ -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 ];