Unverified Commit afc619e4 authored by Thiago Kenji Okada's avatar Thiago Kenji Okada Committed by GitHub
Browse files

vcard: 0.16.1 -> 1.0.0 (#397614)

parents c3002cfe eafc0af8
Loading
Loading
Loading
Loading
+4 −7
Original line number Diff line number Diff line
@@ -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 ];