summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/font-v/default.nix
blob: fe71c42d2996f6e3cb8b749a8d25706c193eca59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
  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 = {
    description = "Python utility for manipulating font version headers";
    mainProgram = "font-v";
    homepage = "https://github.com/source-foundry/font-v";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ danc86 ];
  };
}