python312Packages.collidoscope: cleanup, fix tests in the darwin sandbox

This commit is contained in:
Gaetan Lepage
2025-04-02 15:05:06 +02:00
parent a856c2a098
commit f3dbef37ea
@@ -1,7 +1,8 @@
{
lib,
buildPythonPackage,
fetchPypi,
fetchFromGitHub,
setuptools,
babelfont,
kurbopy,
fonttools,
@@ -9,19 +10,26 @@
tqdm,
uharfbuzz,
unittestCheckHook,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "collidoscope";
version = "0.6.5";
format = "setuptools";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-D7MzJ8FZjA/NSXCqCJQ9a02FPPi3t4W0q65wRIDcfSA=";
src = fetchFromGitHub {
owner = "googlefonts";
repo = "collidoscope";
tag = "v${version}";
hash = "sha256-1tKbv+i2gbUFJa94xSEj5BrEpZ0+ULgglkYvGMP4NXw=";
};
propagatedBuildInputs = [
build-system = [
setuptools
];
dependencies = [
babelfont
kurbopy
fonttools
@@ -37,10 +45,12 @@ buildPythonPackage rec {
"-v"
];
meta = with lib; {
__darwinAllowLocalNetworking = true;
meta = {
description = "Python library to detect glyph collisions in fonts";
homepage = "https://github.com/googlefonts/collidoscope";
license = licenses.mit;
maintainers = with maintainers; [ danc86 ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ danc86 ];
};
}