Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "ufonormalizer"; 5 version = "0.4.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "1rn64a0i151qk6h5f9pijcmja195i2d6f8jbi5h4xkgkinm9wwzj"; 10 extension = "zip"; 11 }; 12 13 meta = with lib; { 14 description = "Script to normalize the XML and other data inside of a UFO"; 15 homepage = "https://github.com/unified-font-object/ufoNormalizer"; 16 license = licenses.bsd3; 17 maintainers = [ maintainers.sternenseemann ]; 18 }; 19}