Merge pull request #21346 from massimo-zaniboni/sphinxcontrib_newsfeed

Python sphinxcontrib-newsfeed-0.1.4

authored by Lancelot SIX and committed by GitHub 2cac3742 ea14a143

+16
+16
pkgs/top-level/python-packages.nix
··· 24600 24600 }; 24601 24601 }); 24602 24602 24603 + sphinxcontrib_newsfeed = buildPythonPackage (rec { 24604 + name = "sphinxcontrib-newsfeed-${version}"; 24605 + version = "0.1.4"; 24606 + src = pkgs.fetchurl { 24607 + url = "mirror://pypi/s/sphinxcontrib-newsfeed/${name}.tar.gz"; 24608 + sha256 = "1d7gam3mn8v4in4p16yn3v10vps7nnaz6ilw99j4klij39dqd37p"; 24609 + }; 24610 + 24611 + propagatedBuildInputs = with self; [sphinx]; 24612 + 24613 + meta = { 24614 + description = "Extension for adding a simple Blog, News or Announcements section to a Sphinx website"; 24615 + homepage = http://bitbucket.org/prometheus/sphinxcontrib-newsfeed; 24616 + license = licenses.bsd2; 24617 + }; 24618 + }); 24603 24619 24604 24620 sphinxcontrib_plantuml = buildPythonPackage (rec { 24605 24621 name = "sphinxcontrib-plantuml-0.7";