1{ lib
2, buildPythonPackage
3, fetchPypi
4, setuptools
5, sphinx
6}:
7
8buildPythonPackage rec {
9 pname = "sphinxcontrib-newsfeed";
10 version = "0.1.4";
11 pyproject = true;
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "1d7gam3mn8v4in4p16yn3v10vps7nnaz6ilw99j4klij39dqd37p";
16 };
17
18 nativeBuildInputs = [
19 setuptools
20 ];
21
22 propagatedBuildInputs = [
23 sphinx
24 ];
25
26 pythonNamespaces = [ "sphinxcontrib" ];
27
28 meta = with lib; {
29 description = "Extension for adding a simple Blog, News or Announcements section to a Sphinx website";
30 homepage = "https://github.com/prometheusresearch/sphinxcontrib-newsfeed";
31 license = licenses.bsd2;
32 };
33
34}