python.pkgs.sphinxcontrib-websupport: keep 1.1.2 for python 2
This commit is contained in:
parent
82c8cfe12c
commit
5b0379ba90
|
@ -0,0 +1,25 @@
|
||||||
|
{ 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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -5862,7 +5862,10 @@ in {
|
||||||
|
|
||||||
sphinx-argparse = callPackage ../development/python-modules/sphinx-argparse { };
|
sphinx-argparse = callPackage ../development/python-modules/sphinx-argparse { };
|
||||||
|
|
||||||
sphinxcontrib-websupport = callPackage ../development/python-modules/sphinxcontrib-websupport { };
|
sphinxcontrib-websupport = if isPy3k then
|
||||||
|
callPackage ../development/python-modules/sphinxcontrib-websupport { }
|
||||||
|
else
|
||||||
|
callPackage ../development/python-modules/sphinxcontrib-websupport/1_1.nix { };
|
||||||
|
|
||||||
hieroglyph = callPackage ../development/python-modules/hieroglyph { };
|
hieroglyph = callPackage ../development/python-modules/hieroglyph { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue