587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
25 lines
547 B
Nix
25 lines
547 B
Nix
{ buildPythonPackage
|
|
, lib
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "xstatic-font-awesome";
|
|
version = "6.2.1.1";
|
|
|
|
src = fetchPypi {
|
|
pname = "XStatic-Font-Awesome";
|
|
inherit version;
|
|
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 ];
|
|
};
|
|
}
|