about summary refs log tree commit diff
path: root/pkgs/development/python-modules/static3/default.nix
blob: 0658238861e1c58cbdd3dae6d2d911110f6304f2 (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
46
47
48
49
50
51
52
53
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,

  # optionals
  genshi,

  # tests
  pytestCheckHook,
  webtest,
}:

buildPythonPackage rec {
  pname = "static3";
  version = "0.7.0";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "rmohr";
    repo = "static3";
    rev = "v${version}";
    hash = "sha256-uFgv+57/UZs4KoOdkFxbvTEDQrJbb0iYJ5JoWWN4yFY=";
  };

  postPatch = ''
    substituteInPlace setup.py \
      --replace ", 'pytest-cov'" ""
  '';

  passthru.optional-dependencies = {
    KidMagic = [
      # TODO: kid
    ];
    Genshimagic = [ genshi ];
  };

  pythonImportsCheck = [ "static" ];

  nativeCheckInputs = [
    pytestCheckHook
    webtest
  ] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies);

  meta = with lib; {
    changelog = "https://github.com/rmohr/static3/releases/tag/v${version}";
    description = "A really simple WSGI way to serve static (or mixed) content";
    mainProgram = "static";
    homepage = "https://github.com/rmohr/static3";
    license = licenses.lgpl21Only;
    maintainers = with maintainers; [ hexa ];
  };
}