Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 25 lines 624 B view raw
1{ lib, buildPythonPackage, fetchPypi 2, fonttools 3, pytest, pytestrunner 4}: 5 6buildPythonPackage rec { 7 pname = "fontMath"; 8 version = "0.6.0"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "09xdqdjyjlx5k9ymi36d7hkgvn55zzjzd65l2yqidkfazlmh14ss"; 13 extension = "zip"; 14 }; 15 16 propagatedBuildInputs = [ fonttools ]; 17 checkInputs = [ pytest pytestrunner ]; 18 19 meta = with lib; { 20 description = "A collection of objects that implement fast font, glyph, etc. math"; 21 homepage = "https://github.com/robotools/fontMath/"; 22 license = licenses.mit; 23 maintainers = [ maintainers.sternenseemann ]; 24 }; 25}