Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
54 lines
1.1 KiB
Nix
54 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
hatchling,
|
|
hatch-vcs,
|
|
icalendar,
|
|
pytestCheckHook,
|
|
git,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "icalendar-compatibility";
|
|
version = "0.1.4";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "niccokunzmann";
|
|
repo = "icalendar_compatibility";
|
|
tag = "v${version}";
|
|
hash = "sha256-h9rpbltNEPMteicPJ6oC32NsZS8QXQphLbC0Qiu7j5Q=";
|
|
};
|
|
|
|
# hatch-vcs tries to read the current git commit hash
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace 'dynamic = ["urls", "version"]' 'version = "${version}"'
|
|
'';
|
|
|
|
build-system = [
|
|
hatchling
|
|
hatch-vcs
|
|
];
|
|
|
|
dependencies = [ icalendar ];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
git
|
|
];
|
|
|
|
pythonImportsCheck = [ "icalendar_compatibility" ];
|
|
|
|
# env.SETUPTOOLS_SCM_PRETEND_VERSION = version;
|
|
|
|
meta = {
|
|
homepage = "https://icalendar-compatibility.readthedocs.io/en/latest/";
|
|
changelog = "https://icalendar-compatibility.readthedocs.io/en/latest/changes.html";
|
|
license = lib.licenses.gpl2Plus;
|
|
maintainers = with lib.maintainers; [ erictapen ];
|
|
};
|
|
|
|
}
|