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