about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/swagger-ui-bundle/default.nix
blob: 13ebaed72c6d4fa4b3386f9a6d9367ea78dd3bd6 (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
38
39
40
41
42
43
44
45
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder

# build-system
, poetry-core

# dependencies
, importlib-resources
, jinja2

 }:

buildPythonPackage rec {
  pname = "swagger-ui-bundle";
  version = "1.1.0";
  pyproject = true;

  src = fetchPypi {
    pname = "swagger_ui_bundle";
    inherit version;
    hash = "sha256-IGc8NDHIcz1dFhXs952azzDP91ICrK8hp9nH9IlxRSk=";
  };

  nativeBuildInputs = [
    poetry-core
  ];

  propagatedBuildInputs = [
    jinja2
  ] ++ lib.optionals (pythonOlder "3.9") [
    importlib-resources
  ];

  # package contains no tests
  doCheck = false;

  meta = with lib; {
    description = "bundled swagger-ui pip package";
    homepage = "https://github.com/dtkav/swagger_ui_bundle";
    license = licenses.asl20;
    maintainers = with maintainers; [ elohmeier ];
  };
}