Unverified Commit f842d997 authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

python3Packages.aiohttp-swagger: fix build and modernize (#403428)

parents b6aef6c3 ba4935b9
Loading
Loading
Loading
Loading
+14 −22
Original line number Diff line number Diff line
@@ -2,11 +2,10 @@
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  setuptools,
  aiohttp,
  jinja2,
  markupsafe,
  pytest-aiohttp,
  pytestCheckHook,
  pythonOlder,
  pyyaml,
}:
@@ -14,45 +13,38 @@
buildPythonPackage rec {
  pname = "aiohttp-swagger";
  version = "1.0.15";
  format = "setuptools";
  pyproject = true;

  disabled = pythonOlder "3.6";

  src = fetchFromGitHub {
    owner = "cr0hn";
    repo = pname;
    rev = version;
    repo = "aiohttp-swagger";
    tag = version;
    hash = "sha256-M43sNpbXWXFRTd549cZhvhO35nBB6OH+ki36BzSk87Q=";
  };

  propagatedBuildInputs = [
  build-system = [
    setuptools
  ];

  dependencies = [
    aiohttp
    jinja2
    markupsafe
    pyyaml
  ];

  nativeCheckInputs = [
    pytestCheckHook
    pytest-aiohttp
  pythonRelaxDeps = [
    "markupsafe"
    "jinja2"
  ];

  postPatch = ''
    substituteInPlace requirements.txt \
      --replace "markupsafe~=1.1.1" "markupsafe>=1.1.1" \
      --replace "jinja2~=2.11.2" "jinja2>=2.11.2"
  '';

  preCheck = ''
    # The custom client is obsolete
    rm tests/conftest.py
  '';

  pythonImportsCheck = [ "aiohttp_swagger" ];

  meta = with lib; {
  meta = {
    description = "Swagger API Documentation builder for aiohttp";
    homepage = "https://github.com/cr0hn/aiohttp-swagger";
    license = licenses.mit;
    license = lib.licenses.mit;
  };
}