Merge pull request #281950 from marsam/fix-build-sphinx-comments

python311Packages.sphinx-comments: fix build
This commit is contained in:
Mario Rodas 2024-01-19 00:02:29 -05:00 committed by GitHub
commit 8d5c6b8baa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,19 +1,22 @@
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
, sphinx
}:
buildPythonPackage rec {
pname = "sphinx-comments";
version = "0.0.3";
format = "pyproject";
pyproject = true;
src = fetchPypi {
inherit pname version;
sha256 = "00170afff27019fad08e421da1ae49c681831fb2759786f07c826e89ac94cf21";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [ sphinx ];
pythonImportsCheck = [ "sphinx_comments" ];