Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / sphinxcontrib-newsfeed / default.nix
blobee9661d954e4ff257d2c01b5f0b7a95053feaac6
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , setuptools
5 , sphinx
6 }:
8 buildPythonPackage rec {
9   pname = "sphinxcontrib-newsfeed";
10   version = "0.1.4";
11   pyproject = true;
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "1d7gam3mn8v4in4p16yn3v10vps7nnaz6ilw99j4klij39dqd37p";
16   };
18   nativeBuildInputs = [
19     setuptools
20   ];
22   propagatedBuildInputs = [
23     sphinx
24   ];
26   pythonNamespaces = [ "sphinxcontrib" ];
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   };