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
55 lines
1.3 KiB
Nix
55 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
fonttools,
|
|
gitMinimal,
|
|
gitpython,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "font-v";
|
|
version = "2.1.0";
|
|
format = "setuptools";
|
|
|
|
# PyPI source tarballs omit tests, fetch from Github instead
|
|
src = fetchFromGitHub {
|
|
owner = "source-foundry";
|
|
repo = "font-v";
|
|
rev = "v${version}";
|
|
hash = "sha256-ceASyYcNul5aWPAPGajCQrqsQ3bN1sE+nMbCbj7f35w=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
fonttools
|
|
gitpython
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
gitMinimal
|
|
pytestCheckHook
|
|
];
|
|
preCheck = ''
|
|
# Many tests assume they are running from a git checkout, although they
|
|
# don't care which one. Create a dummy git repo to satisfy the tests:
|
|
git init -b main
|
|
git config user.email test@example.invalid
|
|
git config user.name Test
|
|
git commit --allow-empty --message 'Dummy commit for tests'
|
|
'';
|
|
disabledTests = [
|
|
# These tests assume they are actually running from a font-v git checkout,
|
|
# so just skip them:
|
|
"test_utilities_get_gitrootpath_function"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python utility for manipulating font version headers";
|
|
mainProgram = "font-v";
|
|
homepage = "https://github.com/source-foundry/font-v";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ danc86 ];
|
|
};
|
|
}
|