Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 buildPythonPackage, 3 lib, 4 fetchPypi, 5}: 6 7buildPythonPackage rec { 8 pname = "xstatic-font-awesome"; 9 version = "6.2.1.1"; 10 11 src = fetchPypi { 12 pname = "XStatic-Font-Awesome"; 13 inherit version; 14 hash = "sha256-8HWHEJYShjjy4VOQINgid1TD2IXdaOfubemgEjUHaCg="; 15 }; 16 17 # no tests implemented 18 doCheck = false; 19 20 meta = with lib; { 21 homepage = "https://github.com/python-xstatic/font-awesome"; 22 description = "Font Awesome packaged for python"; 23 license = licenses.ofl; 24 maintainers = with maintainers; [ aither64 ]; 25 }; 26}