nixpkgs/pkgs/development/python-modules/statmake/default.nix
Jan Tojnar a2f49342d8 treewide: Reduce jtojnar maintainership
Notably fwupd, pipewire and flatpak.
I want to focus on GNOME and other packages I still actually use.
Pipewire is still important but I have not touched the packaging in a while.
2023-05-20 16:40:17 +02:00

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; [ ];
};
}