depot/third_party/nixpkgs/pkgs/development/python-modules/sphinxemoji/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

46 lines
878 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
sphinx,
sphinxHook,
}:
buildPythonPackage rec {
pname = "sphinxemoji";
version = "0.2.0";
format = "pyproject";
outputs = [
"out"
"doc"
];
src = fetchFromGitHub {
owner = "sphinx-contrib";
repo = "emojicodes";
rev = "refs/tags/v${version}";
hash = "sha256-TLhjpJpUIoDAe3RZ/7sjTgdW+5s7OpMEd1/w0NyCQ3A=";
};
nativeBuildInputs = [
setuptools
sphinxHook
];
propagatedBuildInputs = [
sphinx
# sphinxemoji.py imports pkg_resources directly
setuptools
];
pythonImportsCheck = [ "sphinxemoji" ];
meta = with lib; {
description = "Extension to use emoji codes in your Sphinx documentation";
homepage = "https://github.com/sphinx-contrib/emojicodes";
license = licenses.mit;
maintainers = with maintainers; [ kaction ];
};
}