python.pkgs.sphinxcontrib-websupport: init at 1.0.1

This commit is contained in:
Frederik Rietdijk
2017-08-25 19:34:14 +02:00
parent 2923300a5f
commit 7726a1ec25
2 changed files with 28 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
{ lib
, buildPythonPackage
, fetchPypi
, six
}:
buildPythonPackage rec {
pname = "sphinxcontrib-websupport";
version = "1.0.1";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "7a85961326aa3a400cd4ad3c816d70ed6f7c740acd7ce5d78cd0a67825072eb9";
};
propagatedBuildInputs = [ six ];
doCheck = false;
meta = {
description = "Sphinx API for Web Apps";
homepage = http://sphinx-doc.org/;
license = lib.licenses.bsd2;
};
}