3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #188280 from flokli/sphinxcontrib-openapi

python3.pkgs.sphinxcontrib-openapi: unbreak, switch to cilium fork
This commit is contained in:
Florian Klink 2022-08-30 11:06:41 +02:00 committed by GitHub
commit 1a63545f1f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 132 additions and 9 deletions

View file

@ -0,0 +1,59 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, fetchpatch
, flask
, isPy27
, pytestCheckHook
, pythonAtLeast
, setuptools-scm
}:
buildPythonPackage rec {
pname = "picobox";
version = "2.2.0";
disabled = isPy27;
src = fetchFromGitHub {
owner = "ikalnytskyi";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-B2A8GMhBFU/mb/JiiqtP+HvpPj5FYwaYO3gQN2QI6z0=";
};
patches = [
(fetchpatch {
# already in master, but no new release yet.
# https://github.com/ikalnytskyi/picobox/issues/55
url = "https://github.com/ikalnytskyi/picobox/commit/1fcc4a0c26a7cd50ee3ef6694139177b5dfb2be0.patch";
hash = "sha256-/NIEzTFlZ5wG7jHT/YdySYoxT/UhSk29Up9/VqjG/jg=";
includes = [
"tests/test_box.py"
"tests/test_stack.py"
];
})
];
SETUPTOOLS_SCM_PRETEND_VERSION = version;
nativeBuildInputs = [
setuptools-scm
];
checkInputs = [
flask
pytestCheckHook
];
pythonImportsCheck = [
"picobox"
];
meta = with lib; {
description = "Opinionated dependency injection framework";
homepage = "https://github.com/ikalnytskyi/picobox";
license = licenses.mit;
maintainers = with maintainers; [ flokli ];
};
}

View file

@ -0,0 +1,41 @@
{ lib
, buildPythonPackage
, fetchpatch
, fetchPypi
, flit-core
, docutils
, mistune
, pygments
}:
buildPythonPackage rec {
pname = "sphinx-mdinclude";
version = "0.5.2";
format = "flit";
src = fetchPypi {
pname = "sphinx_mdinclude";
inherit version;
hash = "sha256-F7UVe1xNrz+vCbJOCxwyJQoxfwSCORW+qu9vDH7oEPc=";
};
nativeBuildInputs = [ flit-core ];
propagatedBuildInputs = [ mistune docutils ];
checkInputs = [ pygments ];
meta = with lib; {
homepage = "https://github.com/miyakogi/m2r";
description = "Sphinx extension for including or writing pages in Markdown format.";
longDescription = ''
A simple Sphinx extension that enables including Markdown documents from within
reStructuredText.
It provides the .. mdinclude:: directive, and automatically converts the content of
Markdown documents to reStructuredText format.
sphinx-mdinclude is a fork of m2r and m2r2, focused only on providing a Sphinx extension.
'';
license = licenses.mit;
maintainers = with maintainers; [ flokli ];
};
}

View file

@ -1,26 +1,46 @@
{ lib
, buildPythonPackage
, fetchPypi
, deepmerge
, fetchFromGitHub
, fetchpatch
, isPy27
, setuptools-scm
, m2r
, pyyaml
, jsonschema
, picobox
, pyyaml
, sphinx-mdinclude
, sphinxcontrib_httpdomain
}:
buildPythonPackage rec {
pname = "sphinxcontrib-openapi";
version = "0.7.0";
version = "unstable-2022-08-26";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "1c1bd10d7653912c59a42f727c62cbb7b75f7905ddd9ccc477ebfd1bc69f0cf3";
# Switch to Cilums' fork of openapi, which uses m2r instead of mdinclude,
# as m2r is unmaintained and incompatible with the version of mistune.
# See
# https://github.com/cilium/cilium/commit/b9862461568dd41d4dc8924711d4cc363907270b and
# https://github.com/cilium/openapi/commit/cd829a05caebd90b31e325d4c9c2714b459d135f
# for details.
src = fetchFromGitHub {
owner = "cilium";
repo = "openapi";
rev = "0ea3332fa6482114f1a8248a32a1eacb61aebb69";
hash = "sha256-a/oVMg9gGTD+NClfpC2SpjbY/mIcZEVLLOR0muAg5zY=";
};
nativeBuildInputs = [ setuptools-scm ];
propagatedBuildInputs = [ pyyaml jsonschema m2r sphinxcontrib_httpdomain ];
propagatedBuildInputs = [
deepmerge
jsonschema
picobox
pyyaml
sphinx-mdinclude
sphinxcontrib_httpdomain
];
SETUPTOOLS_SCM_PRETEND_VERSION = version;
doCheck = false;
@ -29,5 +49,4 @@ buildPythonPackage rec {
description = "OpenAPI (fka Swagger) spec renderer for Sphinx";
license = licenses.bsd0;
};
}

View file

@ -6742,6 +6742,8 @@ in {
pickleshare = callPackage ../development/python-modules/pickleshare { };
picobox = callPackage ../development/python-modules/picobox { };
picos = callPackage ../development/python-modules/picos { };
pid = callPackage ../development/python-modules/pid { };
@ -10354,6 +10356,8 @@ in {
sphinx-navtree = callPackage ../development/python-modules/sphinx-navtree { };
sphinx-mdinclude = callPackage ../development/python-modules/sphinx-mdinclude { };
sphinx_pypi_upload = callPackage ../development/python-modules/sphinx_pypi_upload { };
sphinx-rtd-theme = callPackage ../development/python-modules/sphinx-rtd-theme { };