Unverified Commit 5e952b64 authored by jopejoe1's avatar jopejoe1 Committed by GitHub
Browse files

Merge pull request #281267 from l0b0/auto-update-vcard

vcard: enable auto-update
parents f3f70b8e 965018f4
Loading
Loading
Loading
Loading
+9 −2
Original line number Diff line number Diff line
@@ -2,14 +2,19 @@
  buildPythonPackage,
  fetchFromGitLab,
  lib,
  nix-update-script,
  pytestCheckHook,
  python-dateutil,
  pythonAtLeast,
  pythonOlder,
}:
buildPythonPackage rec {
  pname = "vcard";
let
  version = "0.15.4";
in
buildPythonPackage {
  inherit version;

  pname = "vcard";
  format = "setuptools";

  disabled = pythonOlder "3.8" || pythonAtLeast "3.12";
@@ -27,6 +32,8 @@ buildPythonPackage rec {

  pythonImportsCheck = [ "vcard" ];

  passthru.updateScript = nix-update-script { };

  meta = {
    homepage = "https://gitlab.com/engmark/vcard";
    description = "vCard validator, class and utility functions";