ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / sphinxcontrib_newsfeed / default.nix
bloba298025f8ba3bbe6250da7173a358b26faa86702
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , sphinx
5 }:
7 buildPythonPackage rec {
8   pname = "sphinxcontrib-newsfeed";
9   version = "0.1.4";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "1d7gam3mn8v4in4p16yn3v10vps7nnaz6ilw99j4klij39dqd37p";
14   };
16   propagatedBuildInputs = [ sphinx ];
18   meta = with lib; {
19     description = "Extension for adding a simple Blog, News or Announcements section to a Sphinx website";
20     homepage = "https://bitbucket.org/prometheus/sphinxcontrib-newsfeed";
21     license = licenses.bsd2;
22   };