This reverts commit65a333600d. This wasn't tested for correctness with something like fodwatch [0], and should not have been (self-)merged so quickly, especially without further review. It also resulted in the breakage of at least one package [1] (and that's the one we know of and was caught). A few packages that were updated in between this commit and this revert were not reverted back to using `rev`, but other than that, this is a 1:1 revert. [0]: https://codeberg.org/raphaelr/fodwatch [1]: https://github.com/NixOS/nixpkgs/pull/396904 /758551e458
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 ];
|
|
};
|
|
}
|