2023-07-15 17:15:38 +00:00
|
|
|
{ buildPythonPackage
|
|
|
|
, lib
|
|
|
|
, fetchPypi
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2024-04-21 15:54:59 +00:00
|
|
|
pname = "xstatic-font-awesome";
|
2023-07-15 17:15:38 +00:00
|
|
|
version = "6.2.1.1";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
2024-04-21 15:54:59 +00:00
|
|
|
pname = "XStatic-Font-Awesome";
|
|
|
|
inherit version;
|
2023-07-15 17:15:38 +00:00
|
|
|
sha256 = "sha256-8HWHEJYShjjy4VOQINgid1TD2IXdaOfubemgEjUHaCg=";
|
|
|
|
};
|
|
|
|
|
|
|
|
# no tests implemented
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/python-xstatic/font-awesome";
|
|
|
|
description = "Font Awesome packaged for python";
|
|
|
|
license = licenses.ofl;
|
|
|
|
maintainers = with maintainers; [ aither64 ];
|
|
|
|
};
|
|
|
|
}
|