0d9fc34957
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
45 lines
875 B
Nix
45 lines
875 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, deepmerge
|
|
, fetchPypi
|
|
, fetchpatch
|
|
, isPy27
|
|
, setuptools-scm
|
|
, jsonschema
|
|
, picobox
|
|
, pyyaml
|
|
, sphinx-mdinclude
|
|
, sphinxcontrib_httpdomain
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "sphinxcontrib-openapi";
|
|
version = "0.8.0";
|
|
disabled = isPy27;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-rO1qloTOgU5qVHURMyA6Ug7rC3UOjICqPUiFJ9RsLzA=";
|
|
};
|
|
|
|
nativeBuildInputs = [ setuptools-scm ];
|
|
propagatedBuildInputs = [
|
|
deepmerge
|
|
jsonschema
|
|
picobox
|
|
pyyaml
|
|
sphinx-mdinclude
|
|
sphinxcontrib_httpdomain
|
|
];
|
|
|
|
SETUPTOOLS_SCM_PRETEND_VERSION = version;
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/ikalnytskyi/sphinxcontrib-openapi";
|
|
description = "OpenAPI (fka Swagger) spec renderer for Sphinx";
|
|
license = licenses.bsd0;
|
|
maintainers = [ maintainers.flokli ];
|
|
};
|
|
}
|