f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
26 lines
550 B
Nix
26 lines
550 B
Nix
{
|
|
buildPythonPackage,
|
|
lib,
|
|
fetchPypi,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "xstatic-font-awesome";
|
|
version = "6.2.1.1";
|
|
|
|
src = fetchPypi {
|
|
pname = "XStatic-Font-Awesome";
|
|
inherit version;
|
|
hash = "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 ];
|
|
};
|
|
}
|