scfbuild: fix runtime error on Python 3.12
This commit is contained in:
parent
f2e3a550f3
commit
fe7795d1da
@ -1,4 +1,13 @@
|
||||
{ lib, buildPythonApplication, fetchFromGitHub, python, pyyaml, fonttools, fontforge }:
|
||||
{
|
||||
lib,
|
||||
buildPythonApplication,
|
||||
fetchFromGitHub,
|
||||
python,
|
||||
pyyaml,
|
||||
fonttools,
|
||||
fontforge,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonApplication {
|
||||
pname = "scfbuild";
|
||||
@ -13,7 +22,12 @@ buildPythonApplication {
|
||||
sha256 = "0wkyzkhshlax9rvdmn441gv87n9abfr0qqmgs8bkg9kbcjb4bhad";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ pyyaml fonttools fontforge ];
|
||||
propagatedBuildInputs = [
|
||||
pyyaml
|
||||
fonttools
|
||||
fontforge
|
||||
setuptools
|
||||
];
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
Loading…
Reference in New Issue
Block a user