1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5}: 6 7buildPythonPackage rec { 8 pname = "fontawesomefree"; 9 version = "6.6.0"; 10 format = "wheel"; 11 12 # they only provide a wheel 13 src = fetchPypi { 14 inherit pname version format; 15 dist = "py3"; 16 python = "py3"; 17 hash = "sha256-WZtXRDHJvZLtX8BU0QRaB8QjNdo2wXiE8rk0dV7vkIk="; 18 }; 19 20 pythonImportsCheck = [ "fontawesomefree" ]; 21 22 meta = with lib; { 23 homepage = "https://github.com/FortAwesome/Font-Awesome"; 24 description = "Icon library and toolkit"; 25 license = with licenses; [ 26 ofl 27 cc-by-40 28 ]; 29 maintainers = with maintainers; [ netali ]; 30 }; 31}