python311Packages.sphinxemoji: fix build

This commit is contained in:
Martin Weinelt 2023-09-19 17:34:52 +02:00
parent 0c4bdff912
commit 34cf2f9ffa

View file

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, sphinx
, sphinxHook
}:
@ -8,6 +9,7 @@
buildPythonPackage rec {
pname = "sphinxemoji";
version = "0.2.0";
format = "pyproject";
outputs = [ "out" "doc" ];
@ -18,14 +20,15 @@ buildPythonPackage rec {
hash = "sha256-TLhjpJpUIoDAe3RZ/7sjTgdW+5s7OpMEd1/w0NyCQ3A=";
};
nativeBuildInputs = [
setuptools
sphinxHook
];
propagatedBuildInputs = [
sphinx
];
nativeBuildInputs = [
sphinxHook
];
pythonImportsCheck = [
"sphinxemoji"
];