Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / fontawesomefree / default.nix
blobdea884ab0b30bfe42806fa7892478c3474006514
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "fontawesomefree";
8   version = "6.5.1";
9   format = "wheel";
11   # they only provide a wheel
12   src = fetchPypi {
13     inherit pname version format;
14     dist = "py3";
15     python = "py3";
16     hash = "sha256-jexKLuN7+OUzeeu/DTjO/sTgbHySJ/Wa8527exYygXs=";
17   };
19   pythonImportsCheck = [
20     "fontawesomefree"
21   ];
23   meta = with lib; {
24     homepage = "https://github.com/FortAwesome/Font-Awesome";
25     description = "Icon library and toolkit";
26     license = with licenses; [ ofl cc-by-40 ];
27     maintainers = with maintainers; [ netali ];
28   };