python3Packages.fontparts: 0.9.7 -> 0.9.9 (#112992)

This commit is contained in:
sternenseemann 2021-02-14 01:15:13 +01:00 committed by GitHub
parent 7376be2918
commit 89147ab523
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,11 +6,11 @@
buildPythonPackage rec {
pname = "fontParts";
version = "0.9.7";
version = "0.9.9";
src = fetchPypi {
inherit pname version;
sha256 = "183y1y11bqd4ky4anyv40qbvsm6i90gnydqzrjg7syspjsqvfqgy";
sha256 = "1iz04kpxgc5fx2rl4585hr1vp4cdajqbddlskkhlmzkn9hvz528i";
extension = "zip";
};
@ -28,7 +28,9 @@ buildPythonPackage rec {
];
checkPhase = ''
runHook preCheck
${python.interpreter} Lib/fontParts/fontshell/test.py
runHook postCheck
'';
checkInputs = [ pytest ];