depot/third_party/nixpkgs/pkgs/development/python-modules/sphinxemoji/default.nix
Default email c7cb07f092 Project import generated by Copybara.
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
2024-02-29 21:09:43 +01:00

44 lines
867 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 ];
};
}