summary refs log tree commit diff
path: root/pkgs/applications/networking/p2p/tribler/aiohttp-apispec.nix
blob: 4e1f5ee6ca70a032a6ff21dda1c01e941d847e8a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ lib, buildPythonPackage, fetchPypi, pythonOlder
, aiohttp, webargs, fetchFromGitHub, callPackage
}:

let
  apispec3 = callPackage ./apispec.nix {};
  jinja2 = callPackage ../../../../development/python2-modules/jinja2 {};
in
buildPythonPackage rec {
  pname = "aiohttp-apispec";
  version = "unstable-2021-21-08";

  # unstable so we can use latest webargs
  src = fetchFromGitHub {
    owner = "maximdanilchenko";
    repo = "aiohttp-apispec";
    rev = "cfa19646394480dda289f6b7af19b7d50f245d81";
    sha256 = "uEgDRAlMjTa4rvdE3fkORCHIlCLzxPJJ2/m4ZRU3eIQ=";
    fetchSubmodules = false;
  };

  propagatedBuildInputs = [ aiohttp webargs apispec3 jinja2 ];

  pythonImportsCheck = [
    "aiohttp_apispec"
  ];

  # Requires pytest-sanic, currently broken in nixpkgs
  doCheck = false;

  meta = with lib; {
    description = "Build and document REST APIs with aiohttp and apispec";
    homepage = "https://github.com/maximdanilchenko/aiohttp-apispec/";
    license = licenses.mit;
    maintainers = [ maintainers.viric ];
  };
}