mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 20:53:48 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
71 lines
1.4 KiB
Nix
71 lines
1.4 KiB
Nix
{ lib
|
|
, attrs
|
|
, buildPythonPackage
|
|
, cattrs
|
|
, exceptiongroup
|
|
, fetchFromGitHub
|
|
, fonttools
|
|
, fs
|
|
, importlib-metadata
|
|
, poetry-core
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, ufo2ft
|
|
, ufoLib2
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "statmake";
|
|
version = "0.6.0";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "daltonmaag";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-3BZ71JVvj7GCojM8ycu160viPj8BLJ1SiW86Df2fzsw=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
attrs
|
|
cattrs
|
|
fonttools
|
|
# required by fonttools[ufo]
|
|
fs
|
|
] ++ lib.optionals (pythonOlder "3.11") [
|
|
exceptiongroup
|
|
] ++ lib.optionals (pythonOlder "3.8") [
|
|
importlib-metadata
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
ufo2ft
|
|
ufoLib2
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"statmake"
|
|
];
|
|
|
|
disabledTests = [
|
|
# Test requires an update as later cattrs is present in Nixpkgs
|
|
# https://github.com/daltonmaag/statmake/issues/42
|
|
"test_load_stylespace_broken_range"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Applies STAT information from a Stylespace to a variable font";
|
|
homepage = "https://github.com/daltonmaag/statmake";
|
|
changelog = "https://github.com/daltonmaag/statmake/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ jtojnar ];
|
|
};
|
|
}
|