push sheeet
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

This commit is contained in:
Dark Steveneq
2025-10-09 14:15:47 +02:00
commit 646b892680
49168 changed files with 5897842 additions and 0 deletions

View File

@@ -0,0 +1,62 @@
{
lib,
buildPythonPackage,
fetchPypi,
fonttools,
pyclipper,
defcon,
fontpens,
setuptools,
setuptools-scm,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "booleanoperations";
version = "0.9.0";
pyproject = true;
src = fetchPypi {
pname = "booleanOperations";
inherit version;
hash = "sha256-jPqCHDKtN0+hINay4LRE6+rFfJHmYxUoZF+hmsKigbg=";
extension = "zip";
};
build-system = [
setuptools
setuptools-scm
];
dependencies = [
fonttools
pyclipper
];
pythonImportsCheck = [ "booleanOperations" ];
nativeCheckInputs = [
defcon
fontpens
pytestCheckHook
];
disabledTests = [
# started failing with fonttools update from 4.55.3 -> 4.56.0
"test_QTail_reversed_difference"
"test_QTail_reversed_intersection"
"test_QTail_reversed_union"
"test_QTail_reversed_xor"
"test_Q_difference"
"test_Q_intersection"
"test_Q_union"
"test_Q_xor"
];
meta = {
description = "Boolean operations on paths";
homepage = "https://github.com/typemytype/booleanOperations";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.sternenseemann ];
};
}