1{ lib, buildPythonPackage, fetchPypi, pythonOlder, setuptools-scm }: 2 3buildPythonPackage rec { 4 pname = "ufonormalizer"; 5 version = "0.6.1"; 6 7 disabled = pythonOlder "3.5"; 8 9 src = fetchPypi { 10 inherit pname version; 11 sha256 = "e61110e75a500083f265385b1354b578610f9542e3bbbeedb98a2a6155e4aa6c"; 12 extension = "zip"; 13 }; 14 15 nativeBuildInputs = [ setuptools-scm ]; 16 17 meta = with lib; { 18 description = "Script to normalize the XML and other data inside of a UFO"; 19 homepage = "https://github.com/unified-font-object/ufoNormalizer"; 20 license = licenses.bsd3; 21 maintainers = [ maintainers.sternenseemann ]; 22 }; 23}