python313Packages.faicons: init at 0.2.2

This commit is contained in:
Robert Schütz
2025-02-22 20:24:24 -08:00
parent 8a56b248d9
commit f2f4f6d37e
2 changed files with 43 additions and 0 deletions
@@ -0,0 +1,41 @@
{
buildPythonPackage,
fetchFromGitHub,
htmltools,
lib,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "faicons";
version = "0.2.2";
pyproject = true;
src = fetchFromGitHub {
owner = "posit-dev";
repo = "py-faicons";
tag = "v${version}";
hash = "sha256-okkZ8anirjcZcZeB3XjvNJpiYQEau+o6dmCGqFBD8XY=";
};
build-system = [ setuptools ];
dependencies = [
htmltools
];
pythonImportsCheck = [ "faicons" ];
nativeCheckInputs = [
pytestCheckHook
];
meta = {
changelog = "https://github.com/posit-dev/py-faicons/blob/${src.tag}/CHANGELOG.md";
description = "Interface to Font-Awesome for use in Shiny";
homepage = "https://github.com/posit-dev/py-faicons";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
+2
View File
@@ -4488,6 +4488,8 @@ self: super: with self; {
factory-boy = callPackage ../development/python-modules/factory-boy { };
faicons = callPackage ../development/python-modules/faicons { };
fairscale = callPackage ../development/python-modules/fairscale { };
fairseq = callPackage ../development/python-modules/fairseq { };