From 02a839bffc2544ab2764d3573b24c2ffd763d233 Mon Sep 17 00:00:00 2001 From: Massimo Zaniboni Date: Thu, 22 Dec 2016 00:01:04 +0100 Subject: [PATCH] pythonPackages.sphinxcontrib_newsfeed: init at 0.1.4 --- pkgs/top-level/python-packages.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 8cc49d53c70..f2ae3e4ecab 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -24571,6 +24571,22 @@ in { }; }); + sphinxcontrib_newsfeed = buildPythonPackage (rec { + name = "sphinxcontrib-newsfeed-${version}"; + version = "0.1.4"; + src = pkgs.fetchurl { + url = "mirror://pypi/s/sphinxcontrib-newsfeed/${name}.tar.gz"; + sha256 = "1d7gam3mn8v4in4p16yn3v10vps7nnaz6ilw99j4klij39dqd37p"; + }; + + propagatedBuildInputs = with self; [sphinx]; + + meta = { + description = "Extension for adding a simple Blog, News or Announcements section to a Sphinx website"; + homepage = http://bitbucket.org/prometheus/sphinxcontrib-newsfeed; + license = licenses.bsd2; + }; + }); sphinxcontrib_plantuml = buildPythonPackage (rec { name = "sphinxcontrib-plantuml-0.7";