python2Packages.sphinxcontrib-websupport: remove

This commit is contained in:
Robert Schütz
2022-12-09 08:06:32 -08:00
parent 04c143eedb
commit 3ff1f3d1c1
2 changed files with 0 additions and 27 deletions
@@ -1,25 +0,0 @@
{ lib
, buildPythonPackage
, fetchPypi
, six
}:
buildPythonPackage rec {
pname = "sphinxcontrib-websupport";
version = "1.1.2";
src = fetchPypi {
inherit pname version;
sha256 = "1501befb0fdf1d1c29a800fdbf4ef5dc5369377300ddbdd16d2cd40e54c6eefc";
};
propagatedBuildInputs = [ six ];
doCheck = false;
meta = {
description = "Sphinx API for Web Apps";
homepage = "http://sphinx-doc.org/";
license = lib.licenses.bsd2;
};
}