nixpkgs/pkgs/development/python-modules/vcard/default.nix
Victor Engmark 893526b397 vcard: init at 0.15.4
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2023-07-24 10:58:31 +12:00

35 lines
760 B
Nix

{ buildPythonPackage
, fetchFromGitLab
, lib
, pytestCheckHook
, python-dateutil
, pythonAtLeast
, pythonOlder
}:
buildPythonPackage rec {
pname = "vcard";
version = "0.15.4";
disabled = pythonOlder "3.8" || pythonAtLeast "3.12";
src = fetchFromGitLab {
owner = "engmark";
repo = "vcard";
rev = "refs/tags/v${version}";
hash = "sha256-7GNq6PoWZgwhhpxhWOkUEpqckeSfzocex1ZGN9CTJyo=";
};
propagatedBuildInputs = [ python-dateutil ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "vcard" ];
meta = {
homepage = "https://gitlab.com/engmark/vcard";
description = "vCard validator, class and utility functions";
license = lib.licenses.agpl3Plus;
maintainers = [ lib.maintainers.l0b0 ];
};
}