nixpkgs/pkgs/development/python-modules/font-v/default.nix
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.

cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
2023-12-07 17:46:49 +01:00

54 lines
1.3 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, fonttools
, git
, 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
];
doCheck = true;
nativeCheckInputs = [
git
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";
homepage = "https://github.com/source-foundry/font-v";
license = licenses.mit;
maintainers = with maintainers; [ danc86 ];
};
}