python3Packages.glyphsets: convert to PEP-517 style

This commit is contained in:
Dan Callaghan 2024-04-01 13:25:18 +11:00
parent 0f84b6db4e
commit 1f764f787e
1 changed files with 3 additions and 3 deletions

View File

@ -15,14 +15,14 @@
buildPythonPackage rec {
pname = "glyphsets";
version = "0.6.14";
format = "setuptools";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-lMRgchadgKyfFLw6ZF1sJAKBAK75zmw77L34MW9p7TI=";
};
propagatedBuildInputs = [
dependencies = [
defcon
fonttools
gflanguages
@ -31,7 +31,7 @@ buildPythonPackage rec {
setuptools
unicodedata2
];
nativeBuildInputs = [
build-system = [
setuptools-scm
];